diff options
author | Quentin <quentin@deuxfleurs.fr> | 2021-02-01 11:22:16 +0100 |
---|---|---|
committer | Quentin <quentin@deuxfleurs.fr> | 2021-02-01 11:22:16 +0100 |
commit | 5babe6fad15b5549788cb9f872da7a9565116101 (patch) | |
tree | 380e1a4a342b158af8f586a4121af8d260d69696 | |
parent | 34c5544ef5d71c01d3ecce2b827452449ca1bf81 (diff) | |
download | infrastructure-5babe6fad15b5549788cb9f872da7a9565116101.tar.gz infrastructure-5babe6fad15b5549788cb9f872da7a9565116101.zip |
Fix port binding
-rw-r--r-- | app/jitsi/config/nginx.conf | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/jitsi/config/nginx.conf b/app/jitsi/config/nginx.conf index b2213e9..2795644 100644 --- a/app/jitsi/config/nginx.conf +++ b/app/jitsi/config/nginx.conf @@ -32,7 +32,7 @@ http { } location /http-bind { - proxy_pass http://{{ env "NOMAD_ADDR_xmpp_port" }}/http-bind; + proxy_pass http://{{ env "NOMAD_ADDR_bosh_port" }}/http-bind; proxy_set_header X-Forwarded-For \$remote_addr; proxy_set_header Host \$http_host; } |