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

Adding winkekatze.tv

This commit is contained in:
L3D 2022-01-09 20:20:42 +01:00
parent dc1b8cd31b
commit c13f7dd8c0
Signed by: l3d
GPG key ID: CD08445BFF4313D1
3 changed files with 45 additions and 0 deletions

View file

@ -36,6 +36,13 @@ local_users:
- l3d@derpy.l3d.yt
- l3d@backup-rsa.l3d.yt
- l3d@bsns.l3d
winkekatze:
- l3d@pinkie.l3d.yt
- l3d@mobile.l3d.yt
- l3d@backup.l3d.yt
- l3d@derpy.l3d.yt
- l3d@backup-rsa.l3d.yt
- l3d@bsns.l3d
sshd__allowed_users:
- "root"
@ -47,6 +54,7 @@ sshd__allowed_users:
- "files"
- "preview"
- 'see'
- 'winkekatze'
sshd__allowed_groups:
- "root"
@ -58,6 +66,7 @@ sshd__allowed_groups:
- "files"
- "preview"
- 'see'
- 'winkekatze'
local_accounts:
- 'l3d'
@ -66,6 +75,7 @@ local_accounts:
- 'files'
- 'preview'
- 'see'
- 'winkekatze'
acme_domain_unwant_list: []
@ -136,6 +146,10 @@ nginx_sites:
- name: 'www.xn--see-br-0xa.se'
- name: 'thelaend.xn--see-br-0xa.se'
- name: 'www.thelaend.xn--see-br-0xa.se'
- name: 'winkekatze.tv'
webroot:
user: 'winkekatze'
- name: 'www.winkekatze.tv'
acme_notification_email: "{{ _acme_notification_email }}"

View file

@ -0,0 +1,17 @@
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
server_name 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/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.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://winkekatze.tv$request_uri;
}
}