From f0a5893c3813bca298cf8cb375624dea82e0230e Mon Sep 17 00:00:00 2001 From: Chase Wright Date: Mon, 14 Feb 2022 08:09:06 -0600 Subject: [PATCH] Update README.md --- README.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 672873d..aac0dde 100644 --- a/README.md +++ b/README.md @@ -147,7 +147,7 @@ Non-Interactive (MySQL root password provided via cli): Make sure that you configure your reverse proxy (NGinx or Apache) as per the [Official Documentation](https://guacamole.apache.org/doc/0.9.7/gug/proxying-guacamole.html) For Nginx: - +``` location /guacamole/ { proxy_pass http://HOSTNAME:8080/guacamole/; proxy_buffering off; @@ -157,12 +157,13 @@ location /guacamole/ { proxy_set_header Connection $http_connection; access_log off; } - +``` For Apache: - +``` Order allow,deny Allow from all ProxyPass http://HOSTNAME:8080/guacamole/ flushpackets=on ProxyPassReverse http://HOSTNAME:8080/guacamole/ +```