blob: d0df2d6515ce795f93e62f523fe6fdfc599eac0f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
--- a/install/nginx/bareos-webui.conf
+++ b/install/nginx/bareos-webui.conf
@@ -2,7 +2,7 @@
listen 9100;
server_name bareos;
- root /var/www/bareos-webui/public;
+ root /usr/share/bareos-webui/public;
location / {
index index.php;
@@ -11,17 +11,9 @@
location ~ .php$ {
- include snippets/fastcgi-php.conf;
+ include fastcgi.conf;
- # With php5-cgi alone pass the PHP
- # scripts to FastCGI server
- # listening on 127.0.0.1:9000
-
- # fastcgi_pass 127.0.0.1:9000;
-
- # With php5-fpm:
-
- fastcgi_pass unix:/var/run/php5-fpm.sock;
+ fastcgi_pass 127.0.0.1:9000;
# Set APPLICATION_ENV to either 'production' or 'development'
|