Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- server {
- listen 99.111.100.133:80;
- server_name sitename.com;
- root /var/www/sitename;
- index index.php index.htm index.html;
- location ~ .php$ {
- fastcgi_pass 127.0.0.1:9000;
- fastcgi_index index.php;
- fastcgi_param SCRIPT_FILENAME var/www/sitename$fastcgi_script_name;
- include fastcgi_params;
- try_files $uri =404;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement