HEX
Server: nginx/1.24.0
System: Linux 19.178.153.160.host.secureserver.net 6.8.0-100-generic #100-Ubuntu SMP PREEMPT_DYNAMIC Tue Jan 13 16:40:06 UTC 2026 x86_64
User: www-data (33)
PHP: 8.1.34
Disabled: NONE
Upload Files
File: //etc/nginx/sites-enabled/vedaholiday.com
server {
    server_name vedaholiday.com www.vedaholiday.com;

    root /var/www/vedaholiday.com;
    index index.php index.html;

    location / {
        try_files $uri $uri/ /index.php?$args;
    }

    location ~ \.php$ {
        include snippets/fastcgi-php.conf;
        fastcgi_pass unix:/var/run/php/php8.1-fpm.sock;
    }

    listen 443 ssl; # managed by Certbot
    ssl_certificate /etc/letsencrypt/live/vedaholiday.com/fullchain.pem; # managed by Certbot
    ssl_certificate_key /etc/letsencrypt/live/vedaholiday.com/privkey.pem; # managed by Certbot
    include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot
    ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot


}
server {
    if ($host = www.vedaholiday.com) {
        return 301 https://$host$request_uri;
    } # managed by Certbot


    if ($host = vedaholiday.com) {
        return 301 https://$host$request_uri;
    } # managed by Certbot


    listen 80;
    server_name vedaholiday.com www.vedaholiday.com;
    return 404; # managed by Certbot




}