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

Merge pull request #9 from DO1JLR/aalend

Adding aalend geekend
This commit is contained in:
L3D 2023-11-01 17:52:05 +01:00 committed by GitHub
commit 9e17083c05
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 37 additions and 2 deletions

@ -1 +1 @@
Subproject commit 8055dd1c9b7787b7259d870be1418aafb877ed32 Subproject commit 6d0bcec1cb579ce7244b3042177d44ca1abd9573

View file

@ -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

View file

@ -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;
}
}

View file

@ -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;
}
}