37 lines
827 B
Plaintext
37 lines
827 B
Plaintext
server_names_hash_bucket_size 64;
|
|
|
|
server {
|
|
listen 80;
|
|
server_name jitsi-meet.example.com;
|
|
return 301 https://$host$request_uri;
|
|
}
|
|
server {
|
|
listen 443 ssl;
|
|
server_name jitsi-meet.example.com;
|
|
|
|
ssl_certificate /var/lib/prosody/jitsi-meet.example.com.crt;
|
|
ssl_certificate_key /var/lib/prosody/jitsi-meet.example.com.key;
|
|
|
|
root /usr/share/jitsi-meet;
|
|
index index.html index.htm;
|
|
|
|
location /config.js {
|
|
alias /etc/jitsi/meet/jitsi-meet.example.com-config.js;
|
|
}
|
|
|
|
location ~ ^/([a-zA-Z0-9=\?]+)$ {
|
|
rewrite ^/(.*)$ / break;
|
|
}
|
|
|
|
location / {
|
|
ssi on;
|
|
}
|
|
|
|
# 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;
|
|
}
|
|
}
|