diff options
Diffstat (limited to 'community/bareos-webui/nginx-conf.patch')
-rw-r--r-- | community/bareos-webui/nginx-conf.patch | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/community/bareos-webui/nginx-conf.patch b/community/bareos-webui/nginx-conf.patch new file mode 100644 index 0000000000..d0df2d6515 --- /dev/null +++ b/community/bareos-webui/nginx-conf.patch @@ -0,0 +1,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' + |