]> git.pld-linux.org Git - packages/eventum.git/blob - nginx.conf
Up to 3.10.12
[packages/eventum.git] / nginx.conf
1 location /eventum {
2         alias /usr/share/eventum/htdocs;
3         index index.php;
4
5         location ~ \.php$ {
6                 fastcgi_pass   unix:/var/run/php/php53-fpm.sock;
7                 include fastcgi_params;
8                 fastcgi_index  index.php;
9                 fastcgi_intercept_errors on;
10                 fastcgi_param SCRIPT_FILENAME $request_filename;
11         }
12 }
This page took 0.025478 seconds and 3 git commands to generate.