Skip to content

Commit

Permalink
Fix Apache configuration syntax
Browse files Browse the repository at this point in the history
Apache does not support comments on the same line as a configuration directive:
https://httpd.apache.org/docs/current/configuring.html#syntax
  • Loading branch information
lucaswerkmeister committed Dec 19, 2022
1 parent 63847c3 commit 41cb84e
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions _guides/reverse-proxies.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,9 @@ ProxyAddHeaders On
ProxyPass / http://127.0.0.1:9000/
ProxyPassReverse / http://127.0.0.1:9000/
# By default Apache times out connections after one minute
ProxyTimeout 86400 # 1 day
# By default Apache times out connections after one minute,
# set to 86400 seconds (1 day) instead
ProxyTimeout 86400
```

If you want to access The Lounge in a sub folder, use the following configuration:
Expand Down

0 comments on commit 41cb84e

Please sign in to comment.