| Server IP : 198.244.165.102 / Your IP : 216.73.216.218 [ Web Server : nginx/1.24.0 System : Linux modovh-ub-01 6.8.0-138-generic #138-Ubuntu SMP PREEMPT_DYNAMIC Fri Jul 31 22:41:49 UTC 2026 x86_64 User : colleary ( 1011) PHP Version : 8.3.23 Disable Function : NONE Domains : 2 Domains MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /proc/thread-self/root/etc/nginx/sites-enabled/ |
Upload File : |
server {
listen 443 ssl;
listen 80;
#ssl on;
ssl_certificate /etc/nginx/ssl/atir.bundle.crt;
ssl_certificate_key /etc/nginx/ssl/atir.key;
#if ($host = www.atir.ie) {
# return 301 https://$host$request_uri;
#}
#if ($host = atir.ie) {
# return 301 https://$host$request_uri;
#}
server_name atir.ie www.atir.ie;
root /var/www/atir/public_html;
index index_01.php index.html index.htm index.php;
location / {
try_files $uri $uri/ =404;
}
location ~ \.php$ {
include snippets/fastcgi-php.conf;
fastcgi_pass unix:/var/run/php/php8.3-fpm.sock;
#fastcgi_pass unix:/var/run/php/php8.1-fpm.sock;
}
location ~ /\.ht {
deny all;
}
if (!-e $request_filename){
rewrite ^(.*)$ /index.php break;
}
error_log /var/www/atir/logs/error.log;
access_log /var/www/atir/logs/access.log;
}