summaryrefslogtreecommitdiff
path: root/nginx.conf
blob: 8bb48fb6045a21b51c205592875e1becd7629625 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
location /eventum {
	alias /usr/share/eventum/htdocs;
	index index.php;

	location ~ \.php$ {
		fastcgi_pass   unix:/var/run/php/php53-fpm.sock;
		include fastcgi_params;
		fastcgi_index  index.php;
		fastcgi_intercept_errors on;
		fastcgi_param SCRIPT_FILENAME $request_filename;
	}
}