mirror of
https://github.com/DO1JLR/ansible_playbook_servers.git
synced 2024-09-14 19:53:56 +02:00
Improve all and add see-base.de
This commit is contained in:
parent
7316b3eb63
commit
5f2d5ae4a1
11 changed files with 45 additions and 8 deletions
3
.gitmodules
vendored
3
.gitmodules
vendored
|
@ -126,3 +126,6 @@
|
|||
[submodule "collections/ansible_collections/l3d/git"]
|
||||
path = collections/ansible_collections/l3d/git
|
||||
url = https://github.com/roles-ansible/ansible_collection_git.git
|
||||
[submodule "collections/ansible_collections/ansible/posix"]
|
||||
path = collections/ansible_collections/ansible/posix
|
||||
url = https://github.com/ansible-collections/ansible.posix.git
|
||||
|
|
1
collections/ansible_collections/ansible/posix
Submodule
1
collections/ansible_collections/ansible/posix
Submodule
|
@ -0,0 +1 @@
|
|||
Subproject commit f48515aad3f253fd7f8a2830b42b0bd0fa6cd727
|
|
@ -1 +1 @@
|
|||
Subproject commit 3bcc0db4fce3f50d774e6f2ff98c5bb0ed7b55e2
|
||||
Subproject commit a402c485a37a699502464d952bad62c7d58c1f1a
|
|
@ -1 +1 @@
|
|||
Subproject commit f833982d6f686063288b9be2c3721aac8d35d521
|
||||
Subproject commit 29790df583ff5b7c6d0487bde57e27e37e9c423f
|
|
@ -1 +1 @@
|
|||
Subproject commit 7f7b2f76a663be0fc6487d7ebac09ab51e6f0168
|
||||
Subproject commit bff05ce8ddb99f53270ad11e753c153df604adb5
|
|
@ -130,8 +130,6 @@ nginx_sites:
|
|||
- name: 'waffeln.eskalieren.jetzt'
|
||||
- name: 'waffeln.fehlerfrei.org'
|
||||
- name: 'www.waffeln.fehlerfrei.org'
|
||||
- name: 'waffel.shop'
|
||||
- name: 'www.waffel.shop'
|
||||
- name: 'l3d.space'
|
||||
- name: 'www.l3d.space'
|
||||
- name: 'ansible.l3d.space'
|
||||
|
@ -167,6 +165,10 @@ nginx_sites:
|
|||
user: 'preview'
|
||||
- name: 'waffelpate.de'
|
||||
- name: 'www.waffelpate.de'
|
||||
- name: 'see-base.de'
|
||||
webroot:
|
||||
user: 'see'
|
||||
- name: 'www.see-base.de'
|
||||
- name: 'xn--see-br-0xa.se'
|
||||
webroot:
|
||||
user: 'see'
|
||||
|
|
|
@ -1 +1 @@
|
|||
Subproject commit c4ff7711a14a9a34af60cfa122c9331d15760582
|
||||
Subproject commit ee881e6b0a206585ae836cdbaeb33dd3a5d2fe61
|
|
@ -1 +1 @@
|
|||
Subproject commit 688f12c67137c107ffa7a5e6606f34ebd9f47d16
|
||||
Subproject commit 9462a81aafc0e54bfc37cf860993a395d7863d5f
|
|
@ -1 +1 @@
|
|||
Subproject commit f9d6d807748ebca36cc0480a9fb6c58b1e70cd62
|
||||
Subproject commit ea61fc33d2db8b505f65f166d4388857facb66fe
|
17
templates/files/nginx/sites/see-base.de_tls.conf
Normal file
17
templates/files/nginx/sites/see-base.de_tls.conf
Normal file
|
@ -0,0 +1,17 @@
|
|||
server {
|
||||
listen 443 ssl http2;
|
||||
listen [::]:443 ssl http2;
|
||||
|
||||
server_name see-base.de;
|
||||
|
||||
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/see-base.de;
|
||||
|
||||
location / {
|
||||
charset utf-8;
|
||||
try_files $uri $uri/ =404;
|
||||
}
|
||||
}
|
14
templates/files/nginx/sites/www.see-base.de_tls.conf
Normal file
14
templates/files/nginx/sites/www.see-base.de_tls.conf
Normal file
|
@ -0,0 +1,14 @@
|
|||
server {
|
||||
listen 443 ssl http2;
|
||||
listen [::]:443 ssl http2;
|
||||
|
||||
server_name www.see-base.de;
|
||||
|
||||
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://see-base.de$request_uri;
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue