123456789101112131415161718192021222324252627282930313233343536373839 |
- server {
- listen 80;
-
- server_name jitsi.example.com;
- # set the root
- root /srv/jitsi.example.com;
- index index.html;
-
- location ~ ^/([a-zA-Z0-9=\?]+)$ {
- rewrite ^/(.*)$ / break;
- }
-
- location / {
- ssi 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;
-
- # 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;
- }
- }
|