You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
619 B
35 lines
619 B
6 years ago
|
server_name _;
|
||
|
|
||
|
client_max_body_size 0;
|
||
|
|
||
|
root /usr/share/jitsi-meet;
|
||
|
index index.html
|
||
|
error_page 404 /static/404.html;
|
||
|
|
||
|
location ~ ^/([a-zA-Z0-9=\?]+)$ {
|
||
|
rewrite ^/(.*)$ / break;
|
||
|
}
|
||
|
|
||
|
location /config.js {
|
||
|
alias /config/config.js;
|
||
|
}
|
||
|
|
||
|
location /interface_config.js {
|
||
|
alias /config/interface_config.js;
|
||
|
}
|
||
|
|
||
|
location /external_api.js {
|
||
|
alias /usr/share/jitsi-meet/libs/external_api.min.js;
|
||
|
}
|
||
|
|
||
|
location / {
|
||
|
ssi on;
|
||
|
}
|
||
|
|
||
|
# BOSH
|
||
|
location /http-bind {
|
||
|
proxy_pass {{ .Env.XMPP_BOSH_URL_BASE }}/http-bind;
|
||
|
proxy_set_header X-Forwarded-For $remote_addr;
|
||
|
proxy_set_header Host {{ .Env.XMPP_DOMAIN }};
|
||
|
}
|