Support any chars in roomname

We need to review carefully if there is no security implication
or bugs depending on the client (jitsi-meet, ios, ...)

Signed-off-by: Etienne CHAMPETIER <champetier.etienne@gmail.com>
This commit is contained in:
Etienne CHAMPETIER 2016-04-08 10:58:39 +02:00
parent a112b10a36
commit b7ddc9c3ca
2 changed files with 9 additions and 7 deletions

View File

@ -25,11 +25,12 @@ server {
alias /etc/jitsi/meet/jitsi-meet.example.com-config.js;
}
location ~ ^/([a-zA-Z0-9=\?]+)$ {
rewrite ^/(.*)$ / break;
location / {
try_files $uri /;
}
location / {
# only enable ssi on '/' (index.html)
location = / {
ssi on;
}

View File

@ -6,11 +6,12 @@ server {
root /srv/jitsi.example.com;
index index.html;
location ~ ^/([a-zA-Z0-9=\?]+)$ {
rewrite ^/(.*)$ / break;
}
location / {
try_files $uri /;
}
# only enable ssi on '/' (index.html)
location = / {
ssi on;
}