summaryrefslogtreecommitdiff
path: root/www-apps/bareos-webui/files/nginx.include
blob: 2d6ab2978ba1a6e7ec9c4cecab090f4339c3214c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
server {

	listen		9100;
	server_name	bareos;
	root		/var/www/localhost/htdocs/bareos-webui/public;

	location / {
		index index.php;
		try_files $uri $uri/ /index.php?$query_string;
	}

	location ~ .php$ {
		snippets/fastcgi-php.conf
		fastcgi_pass unix:/var/run/php5-fpm.sock;
		fastcgi_param APPLICATION_ENV production;
	}
}