Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- server {
- #listen 80; ## listen for ipv4; this line is default and implied
- #listen [::]:80 default ipv6only=on; ## listen for ipv6
- root /usr/share/nginx/www;
- index index.html index.htm index.php;
- # Make site accessible from http://localhost/
- server_name localhost;
- location / {
- # First attempt to serve request as file, then
- # as directory, then fall back to index.html
- try_files $uri $uri/ /index.html index.php;
- }
- location /cacti {
- alias /usr/share/cacti/site;
- index index.php;
- }
- location ~ \.php$ {
- fastcgi_pass 127.0.0.1:9000;
- fastcgi_index index.php;
- include fastcgi_params;
- }
Advertisement
Add Comment
Please, Sign In to add comment