Sample nginx vhsot config file


Dec 07, 2020    Janaki Mahapatra, Installation

server{
        listen 80;
        server_name www.yourwebsite.com;
        root /path/to/your/www;
        index index.php;

     location / {
                try_files $uri $uri/ =404;
         }
        error_page 404 /404.html;
        error_page 500 502 503 504 /50x.html;
        location = /50x.html {
                root /usr/share/nginx/html;
        }

    location ~ \.php$ {
        try_files $uri =404;
        fastcgi_pass unix:/var/run/php-fpm/php-fpm.sock;
        fastcgi_index index.php;
        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
        include fastcgi_params;
        fastcgi_param  APPLICATION_ENV development; #set it for environment variable 
        fastcgi_param APPLICATION_LOGGING false;
    }
}