manage murmur channels; install mumble-web's self-signed cert; add molecule default scenario
This commit is contained in:
@@ -8,7 +8,7 @@ server {
|
||||
return 301 https://$host$request_uri;
|
||||
}
|
||||
|
||||
{% if acme_challenge_dir is defined %}
|
||||
{% if acme_enabled and acme_challenge_dir is defined %}
|
||||
location ^~ /.well-known/acme-challenge/ {
|
||||
allow all;
|
||||
root {{ acme_challenge_dir }};
|
||||
@@ -30,8 +30,8 @@ server {
|
||||
ssl_session_cache shared:AnsibleSSL:10m; # about 40000 sessions
|
||||
ssl_session_tickets off;
|
||||
|
||||
{% if mumble_web_dhparam is defined and mumble_web_dhparam != '' %}
|
||||
ssl_dhparam {{ mumble_web_dhparam }};
|
||||
{% if mumble_web_nginx_dhparam %}
|
||||
ssl_dhparam {{ mumble_web_nginx_dhparam }};
|
||||
{% endif %}
|
||||
|
||||
ssl_protocols TLSv1.2 TLSv1.3;
|
||||
@@ -44,8 +44,10 @@ server {
|
||||
ssl_stapling on;
|
||||
ssl_stapling_verify on;
|
||||
|
||||
{% if acme_enabled %}
|
||||
# Verify chain of trust of OCSP response using Root CA and Intermediate certs
|
||||
ssl_trusted_certificate {{ mumble_web_trusted_certificate }};
|
||||
{% endif %}
|
||||
|
||||
location / {
|
||||
root /var/www/mumble-web/dist/;
|
||||
|
||||
Reference in New Issue
Block a user