You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When running backend in a docker container using backend as its dns,
a frontend proxying to the backend hosting at example.com,
gitlab url conains backend:5000 which should be example.com:
When running backend in a docker container using backend as its dns,
a frontend proxying to the backend hosting at example.com,
gitlab url conains backend:5000 which should be example.com:
The config.py contains this for oauth:
Adding
SERVER_NAME='example.com' breaks
The problem is url_for in bundles.oauth.views.OAuthController.login,
which creates http://backend:5000.
Is there a way to customize the generated url_for.
Setting SERVER_NAME='example.com' breaks, frontend be able to reach the server using backend:5000.
The text was updated successfully, but these errors were encountered: