Current File : //etc/nginx/availablesites/srimatahangarahalli.com.conf |
server {
listen 80;
server_name srimatahangarahalli.com www.srimatahangarahalli.com;
location / {
root /home/srimataha/public_html/public_html;
index index.html index.htm index.php;
try_files $uri $uri/ /index.php?$args;
}
location ~ \.php$ {
root /home/srimataha/public_html/public_html/;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME /home/srimataha/public_html/public_html$fastcgi_script_name;
include fastcgi_params;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
}