summaryrefslogtreecommitdiff
path: root/cacti.nginx
blob: ce732b5b80b6d1854d771e7b6b64c1df7e30152b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# cacti nginx configuration

location = /cacti {
    alias /usr/share/cacti/;
}

location /cacti/ {
     root /usr/share;
     index index.php index.html;

     location ~ ^/cacti/(.+\.php)$
     {
         try_files $uri =404;
         fastcgi_intercept_errors on;
         include        fastcgi_params;
         fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
         fastcgi_pass   php-fpm;
     }
}