diff --git a/docs/quickstart_guide.md b/docs/quickstart_guide.md index 9d60170..6221ff4 100644 --- a/docs/quickstart_guide.md +++ b/docs/quickstart_guide.md @@ -842,7 +842,7 @@ app1.example.com_REVERSE_PROXY_HOST=http://127.0.0.1:8080 # If the PHP-FPM instance is on the same machine # you just need to adjust the socket path app2.example.com_LOCAL_PHP=/run/php/php7.3-fpm.sock -app2.example.com_LOCAL_PHP_PATH=/opt/bunkerized-nginx/www +app2.example.com_LOCAL_PHP_PATH=/opt/bunkerized-nginx/www/app2.example.com # Else if the PHP-FPM instance is on another machine #app2.example.com_REMOTE_PHP=myapp.example.local #app2.example.com_REMOTE_PHP_PATH=/app diff --git a/helpers/install.sh b/helpers/install.sh index cdc44bd..cd19280 100755 --- a/helpers/install.sh +++ b/helpers/install.sh @@ -834,6 +834,8 @@ if [ "$OS" != "alpine" ] ; then do_and_check_cmd chmod 744 /lib/systemd/system/nginx.service do_and_check_cmd systemctl daemon-reload fi +# Allow RX access to others on /opt/bunkerized-nginx +do_and_check_cmd chmod 755 /opt/bunkerized-nginx # Prepare log files and folders echo "[*] Prepare log files and folders"