[Feature Request] Documentation update suggestion re: Allowed Hosts #5167
Replies: 2 comments
-
|
This discussion has been automatically closed due to lack of community support. See our contributing guidelines for more details. |
Beta Was this translation helpful? Give feedback.
0 replies
-
|
This discussion has been automatically locked since there has not been any recent activity after it was closed. Please open a new discussion for related concerns. See our contributing guidelines for more details. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Description
[existing documentation]
localhost:3000 and 127.0.0.1:3000 are always included, but you can add a domain or IP address to this list to allow that host such as HOMEPAGE_ALLOWED_HOSTS=gethomepage.dev,192.168.1.2:1234, etc.
[new documentation]
For setting up the variable with a reverse proxy, use this:
HOMEPAGE_ALLOWED_HOSTS=<reverseproxy IP:<PORT>,<subdomain.domain.tld>example: 192.168.10.10:1010,homepage.domain.com
If you would like to have multiple allowed hosts you would repeat:
example: 192.168.10.10:1010,homepage.domain.com,192.168.10.11:1010,192.168.10.12:1010,192.168.10.13:1010 (and so on)
[/new documentation]
Other
Beta Was this translation helpful? Give feedback.
All reactions