Skip to content
Snippets Groups Projects
Commit 30d85338 authored by Armin Co's avatar Armin Co
Browse files

Update

parent 870fd263
Branches
No related tags found
No related merge requests found
......@@ -22,6 +22,5 @@ services:
- 64738:64738/udp
volumes:
- /etc/localtime:/etc/localtime:ro
# - ./murmur:/opt/murmur/config
- ./reverse_proxy/keys/letsencrypt:/opt/murmur/cert
- ./reverse_proxy/keys/letsencrypt/:/opt/murmur/cert
restart: unless-stopped
......@@ -72,7 +72,7 @@ icesecretwrite=
# logs to the file 'murmur.log'. If you leave this field blank
# on Unix-like systems, Murmur will force itself into foreground
# mode which logs to the console.
logfile=/data/mumble-server.log
logfile=
# If set, Murmur will write its process ID to this file
# when running in daemon mode (when the -fg flag is not
......
server {
listen 443 ssl;
listen [::]:443 ssl;
server_name mumble.*;
include /config/nginx/ssl.conf;
client_max_body_size 0;
location / {
include /config/nginx/proxy.conf;
resolver 127.0.0.11 valid=30s;
set $upstream_mumble mumble;
proxy_max_temp_file_size 2048m;
proxy_pass https://$upstream_mumble:4436;
}
location /cvh {
proxy_pass http://localhost:64737;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $connection_upgrade;
}
}
map $http_upgrade $connection_upgrade {
default upgrade;
'' close;
}
\ No newline at end of file
File mode changed from 100755 to 100644
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment