mirror of
https://github.com/DO1JLR/ansible_playbook_servers.git
synced 2024-09-14 19:53:56 +02:00
Adding aalend geekend
This commit is contained in:
parent
beb02ad7c5
commit
76f37d2202
5 changed files with 37 additions and 2 deletions
|
@ -1 +1 @@
|
||||||
Subproject commit 8055dd1c9b7787b7259d870be1418aafb877ed32
|
Subproject commit 6d0bcec1cb579ce7244b3042177d44ca1abd9573
|
|
@ -181,6 +181,10 @@ nginx_sites:
|
||||||
- name: 'www.xn--see-br-0xa.se'
|
- name: 'www.xn--see-br-0xa.se'
|
||||||
- name: 'thelaend.xn--see-br-0xa.se'
|
- name: 'thelaend.xn--see-br-0xa.se'
|
||||||
- name: 'www.thelaend.xn--see-br-0xa.se'
|
- name: 'www.thelaend.xn--see-br-0xa.se'
|
||||||
|
- name: 'aalen-geekend-23.winkekatze.tv'
|
||||||
|
webroot:
|
||||||
|
user: 'winkekatze'
|
||||||
|
- name: 'www.aalen-geekend-23.winkekatze.tv'
|
||||||
- name: 'winkekatze.tv'
|
- name: 'winkekatze.tv'
|
||||||
webroot:
|
webroot:
|
||||||
user: 'winkekatze'
|
user: 'winkekatze'
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
Subproject commit 5cd1afc65018125ee419917b9b87bb8d038f6fcc
|
Subproject commit 9d86ed9130ab4058fd617979ece2f71766665115
|
|
@ -0,0 +1,17 @@
|
||||||
|
server {
|
||||||
|
listen 443 ssl http2;
|
||||||
|
listen [::]:443 ssl http2;
|
||||||
|
|
||||||
|
server_name aalen-geekend-23.winkekatze.tv;
|
||||||
|
|
||||||
|
include snippets/tls_parameters_{{ site.name }}.snippet.conf;
|
||||||
|
include snippets/tls_certificate_{{ site.name }}.snippet.conf;
|
||||||
|
include snippets/logging_{{ site.name }}.snippet.conf;
|
||||||
|
|
||||||
|
root /srv/www/aalen-geekend-23.winkekatze.tv;
|
||||||
|
|
||||||
|
location / {
|
||||||
|
charset utf-8;
|
||||||
|
try_files $uri $uri/ =404;
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,14 @@
|
||||||
|
server {
|
||||||
|
listen 443 ssl http2;
|
||||||
|
listen [::]:443 ssl http2;
|
||||||
|
|
||||||
|
server_name www.aalen-geekend-23.winkekatze.tv;
|
||||||
|
|
||||||
|
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://aalen-geekend-23.winkekatze.tv$request_uri;
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in a new issue