Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typo in internal-domains.md #3

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion site/content/domains-and-routing/internal-domains.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ cf push \
-p proxy \ # path to the source directory
--var route=<HOSTNAME>.<CF_APPS_DOMAIN> \ # The route for nginx. Use the external domain and hostname removed from the training-app above
--var proxied_route=<HOSTNAME>.apps.internal \ # The internal route for the training-app
--var proxied_port=8080" # The internal port (default) for the training-app
--var proxied_port=8080 # The internal port (default) for the training-app
```

If you were to try and access the proxy app now, you would receive a 502 bad gateway error. The proxy is configured, but traffic from the proxy to the training-app needs to be explicitly allowed in Cloud Foundry through a network policy.
Expand Down