1
0
Fork 0
mirror of https://github.com/DO1JLR/ansible_playbook_servers.git synced 2024-09-14 19:53:56 +02:00

c3woc.org improved

This commit is contained in:
L3D 2020-12-24 01:29:10 +01:00
parent ece03524c3
commit 43a76e4503
Signed by: l3d
GPG key ID: CD08445BFF4313D1
3 changed files with 17 additions and 7 deletions

View file

@ -24,5 +24,7 @@ nginx_sites:
- name: 'c3woc.org'
webroot:
user: 'webwaffel'
- name: 'www.c3woc.org'
acme_notification_email: "acme_{{ inventory_hostname }}@l3d.yt"

View file

@ -8,15 +8,9 @@ server {
include snippets/tls_certificate_{{ site.name }}.snippet.conf;
include snippets/logging_{{ site.name }}.snippet.conf;
root /srv/www/files.chvoc.ch;
root /srv/www/c3woc.org;
location / {
try_files $uri $uri/ =404;
}
location /files/foobarach1xa/ {
autoindex on;
autoindex_exact_size off;
autoindex_localtime on;
}
}

View file

@ -0,0 +1,14 @@
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
server_name www.c3woc.org;
include snippets/tls_parameters_{{ site.name }}.snippet.conf;
include snippets/tls_certificate_{{ site.name }}.snippet.conf;
include snippets/logging_{{ site.name }}.snippet.conf;
location / {
return 308 https://c3woc.org$request_uri;
}
}