Skip to content

Commit

Permalink
fix: location block (no-tls, internal-idp)
Browse files Browse the repository at this point in the history
  • Loading branch information
davidlougheed committed Feb 16, 2024
1 parent 376945a commit 5dae3e4
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions conf/nginx.conf.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -114,13 +114,15 @@ http {
listen 80;
server_name ${BENTOV2_AUTH_DOMAIN};
# Reverse proxy settings
include /gateway/conf/proxy.conf;
location / {
# Reverse proxy settings
include /gateway/conf/proxy.conf;
set $upstream_auth ${BENTOV2_AUTH_CONTAINER_NAME}:${BENTOV2_AUTH_INTERNAL_PORT};
proxy_pass $upstream_auth;
set $upstream_auth ${BENTOV2_AUTH_CONTAINER_NAME}:${BENTOV2_AUTH_INTERNAL_PORT};
proxy_pass $upstream_auth;
error_log /var/log/bentov2_auth_errors.log;
error_log /var/log/bentov2_auth_errors.log;
}
}
# tpl__internal_idp__end
# tpl__tls_no__end
Expand Down

0 comments on commit 5dae3e4

Please sign in to comment.