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:
parent
ece03524c3
commit
43a76e4503
3 changed files with 17 additions and 7 deletions
|
@ -24,5 +24,7 @@ nginx_sites:
|
||||||
- name: 'c3woc.org'
|
- name: 'c3woc.org'
|
||||||
webroot:
|
webroot:
|
||||||
user: 'webwaffel'
|
user: 'webwaffel'
|
||||||
|
- name: 'www.c3woc.org'
|
||||||
|
|
||||||
|
|
||||||
acme_notification_email: "acme_{{ inventory_hostname }}@l3d.yt"
|
acme_notification_email: "acme_{{ inventory_hostname }}@l3d.yt"
|
||||||
|
|
|
@ -8,15 +8,9 @@ server {
|
||||||
include snippets/tls_certificate_{{ site.name }}.snippet.conf;
|
include snippets/tls_certificate_{{ site.name }}.snippet.conf;
|
||||||
include snippets/logging_{{ site.name }}.snippet.conf;
|
include snippets/logging_{{ site.name }}.snippet.conf;
|
||||||
|
|
||||||
root /srv/www/files.chvoc.ch;
|
root /srv/www/c3woc.org;
|
||||||
|
|
||||||
location / {
|
location / {
|
||||||
try_files $uri $uri/ =404;
|
try_files $uri $uri/ =404;
|
||||||
}
|
}
|
||||||
|
|
||||||
location /files/foobarach1xa/ {
|
|
||||||
autoindex on;
|
|
||||||
autoindex_exact_size off;
|
|
||||||
autoindex_localtime on;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
14
templates/files/nginx/sites/www.c3woc.org_tls.conf
Normal file
14
templates/files/nginx/sites/www.c3woc.org_tls.conf
Normal 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;
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in a new issue