1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- server {
- listen 80;
-
- server_name jitsi.example.com;
- # set the root
- root /srv/jitsi.example.com;
- # ssi on with javascript for multidomain variables in config.js
- ssi on;
- ssi_types application/x-javascript application/javascript;
- index index.html;
- set $prefix "";
-
-
- # BOSH
- location /http-bind {
- proxy_pass http://localhost:5280/http-bind;
- proxy_set_header X-Forwarded-For $remote_addr;
- proxy_set_header Host $http_host;
- }
-
- # xmpp websockets
- location /xmpp-websocket {
- proxy_pass http://localhost:5280/xmpp-websocket;
- proxy_http_version 1.1;
- proxy_set_header Upgrade $http_upgrade;
- proxy_set_header Connection "upgrade";
- proxy_set_header Host $host;
- tcp_nodelay on;
- }
-
- gzip on;
- gzip_types text/plain text/css application/javascript application/json image/x-icon application/octet-stream application/wasm;
- gzip_vary on;
- gzip_proxied no-cache no-store private expired auth;
- gzip_min_length 512;
-
- location ~ ^/([^/?&:'"]+)$ {
- try_files $uri @root_path;
- }
-
- location @root_path {
- rewrite ^/(.*)$ / break;
- }
-
- location ~ ^/([^/?&:'"]+)/config.js$
- {
- set $subdomain "$1.";
- set $subdir "$1/";
-
- alias /etc/jitsi/meet/{{jitsi_meet_domain_name}}-config.js;
- }
-
- #Anything that didn't match above, and isn't a real file, assume it's a room name and redirect to /
- location ~ ^/([^/?&:'"]+)/(.*)$ {
- set $subdomain "$1.";
- set $subdir "$1/";
- rewrite ^/([^/?&:'"]+)/(.*)$ /$2;
- }
-
- # BOSH for subdomains
- location ~ ^/([^/?&:'"]+)/http-bind {
- set $subdomain "$1.";
- set $subdir "$1/";
- set $prefix "$1";
-
- rewrite ^/(.*)$ /http-bind;
- }
-
- # websockets for subdomains
- location ~ ^/([^/?&:'"]+)/xmpp-websocket {
- set $subdomain "$1.";
- set $subdir "$1/";
- set $prefix "$1";
-
- rewrite ^/(.*)$ /xmpp-websocket;
- }
- }
|