Update README.md

This commit is contained in:
Chase Wright 2022-02-14 08:09:06 -06:00 committed by GitHub
parent dd8ffa2b96
commit f0a5893c38
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 3 deletions

View File

@ -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) 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: For Nginx:
```
location /guacamole/ { location /guacamole/ {
proxy_pass http://HOSTNAME:8080/guacamole/; proxy_pass http://HOSTNAME:8080/guacamole/;
proxy_buffering off; proxy_buffering off;
@ -157,12 +157,13 @@ location /guacamole/ {
proxy_set_header Connection $http_connection; proxy_set_header Connection $http_connection;
access_log off; access_log off;
} }
```
For Apache: For Apache:
```
<Location /guacamole/> <Location /guacamole/>
Order allow,deny Order allow,deny
Allow from all Allow from all
ProxyPass http://HOSTNAME:8080/guacamole/ flushpackets=on ProxyPass http://HOSTNAME:8080/guacamole/ flushpackets=on
ProxyPassReverse http://HOSTNAME:8080/guacamole/ ProxyPassReverse http://HOSTNAME:8080/guacamole/
</Location> </Location>
```