30 lines
761 B
Plaintext
30 lines
761 B
Plaintext
|
{# code: language=ansible-jinja #}
|
||
|
# THIS FILE IS MANAGED BY ANSIBLE
|
||
|
|
||
|
server {
|
||
|
server_name {{ apps_vars.jitsi.domain }};
|
||
|
listen 8080;
|
||
|
|
||
|
set $upstream http://jitsi:{{ apps_vars.jitsi.port }};
|
||
|
|
||
|
proxy_set_header Host $host;
|
||
|
proxy_set_header X-Real-IP $remote_addr;
|
||
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||
|
proxy_set_header X-Forwarded-Proto "https";
|
||
|
|
||
|
proxy_http_version 1.1;
|
||
|
proxy_buffering off;
|
||
|
|
||
|
location / {
|
||
|
proxy_pass $upstream;
|
||
|
}
|
||
|
|
||
|
location ~^/(colibri-ws|xmpp-websocket)$ {
|
||
|
proxy_pass $upstream;
|
||
|
|
||
|
# WebSocket support
|
||
|
proxy_set_header Upgrade $http_upgrade;
|
||
|
proxy_set_header Connection $connection_upgrade;
|
||
|
}
|
||
|
}
|