Welcome to mirror list, hosted at ThFree Co, Russian Federation.

piwik_nginx.conf « travis « tests - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7483693f57380a1a636cef709bf901c57dee8632 (plain)
1
2
3
4
5
6
7
8
9
10
11
server {
	listen  80;
	root    @PIWIK_ROOT@/;
	index   index.php index.html;

	location ~ \.php$ {
		fastcgi_pass	unix:@PHP_FPM_SOCK@;
		include	fastcgi_params;
		fastcgi_read_timeout 300s;
	}
}