mirror of
https://github.com/YunoHost-Apps/jitsi_ynh.git
synced 2024-09-03 19:35:57 +02:00
Fix missing certificate
This commit is contained in:
parent
05da5f3254
commit
413dc1ad9a
3 changed files with 13 additions and 9 deletions
|
@ -15,7 +15,7 @@ location = /external_api.js {
|
|||
alias __FINALPATH__/jitsi-meet-web/libs/external_api.min.js;
|
||||
}
|
||||
|
||||
#ensure all static content can always be found first
|
||||
# ensure all static content can always be found first
|
||||
location ~ ^/(libs|css|static|images|fonts|lang|sounds|connection_optimization|.well-known)/(.*)$
|
||||
{
|
||||
more_set_headers "Access-Control-Allow-Origin: *";
|
||||
|
@ -29,9 +29,9 @@ location ~ ^/(libs|css|static|images|fonts|lang|sounds|connection_optimization|.
|
|||
|
||||
# BOSH
|
||||
location = /http-bind {
|
||||
proxy_pass http://127.0.0.1:5280/http-bind?prefix=$prefix&$args;
|
||||
proxy_pass http://127.0.0.1:5280/http-bind?prefix=$prefix&$args;
|
||||
proxy_set_header X-Forwarded-For $remote_addr;
|
||||
proxy_set_header Host $http_host;
|
||||
proxy_set_header Host $http_host;
|
||||
}
|
||||
|
||||
# xmpp websockets
|
||||
|
@ -63,10 +63,10 @@ location @root_path {
|
|||
|
||||
location ~ ^/([^/?&:'"]+)/config.js$
|
||||
{
|
||||
set $subdomain "$1.";
|
||||
set $subdir "$1/";
|
||||
|
||||
alias /etc/__NAME__/meet/__DOMAIN__-config.js;
|
||||
set $subdomain "$1.";
|
||||
set $subdir "$1/";
|
||||
|
||||
alias /etc/__NAME__/meet/__DOMAIN__-config.js;
|
||||
}
|
||||
|
||||
# BOSH for subdomains
|
||||
|
@ -87,7 +87,7 @@ location ~ ^/([^/?&:'"]+)/xmpp-websocket {
|
|||
rewrite ^/(.*)$ /xmpp-websocket;
|
||||
}
|
||||
|
||||
#Anything that didn't match above, and isn't a real file, assume it's a room name and redirect to /
|
||||
# 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/";
|
||||
|
|
|
@ -108,6 +108,10 @@ Component "internal.auth.__DOMAIN__" "muc"
|
|||
muc_room_default_public_jids = true
|
||||
|
||||
VirtualHost "auth.__DOMAIN__"
|
||||
ssl = {
|
||||
key = "/etc/prosody/certs/auth.__DOMAIN__.key";
|
||||
certificate = "/etc/prosody/certs/auth.__DOMAIN__.crt";
|
||||
}
|
||||
modules_enabled = {
|
||||
"limits_exception";
|
||||
}
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
"en": "Video conferencing web application",
|
||||
"fr": "Application web de conférence vidéo"
|
||||
},
|
||||
"version": "1.0.4466~ynh1",
|
||||
"version": "1.0.4466~ynh2",
|
||||
"url": "https://jitsi.org/Projects/JitMeet",
|
||||
"upstream": {
|
||||
"license": "Apache-2.0",
|
||||
|
|
Loading…
Add table
Reference in a new issue