mirror of
https://github.com/DO1JLR/ansible_playbook_servers.git
synced 2024-09-14 19:53:56 +02:00
update ntp, remove backwesen
This commit is contained in:
parent
038d53667b
commit
fca9ebae5d
8 changed files with 1546 additions and 501 deletions
|
@ -10,7 +10,6 @@ forks = 20
|
|||
gathering = smart
|
||||
fact_caching = jsonfile
|
||||
fact_caching_connection = $HOME/.ansible/facts
|
||||
host_key_checking = false
|
||||
|
||||
interpreter_python = /usr/bin/python3
|
||||
|
||||
|
|
|
@ -1 +1 @@
|
|||
Subproject commit 87a6b92a09a9bf1f064a38f0b51ae32cae21b431
|
||||
Subproject commit f9f568e4cdb190c1e14e5ec67b1eca5df89217cf
|
File diff suppressed because one or more lines are too long
Before Width: | Height: | Size: 63 KiB After Width: | Height: | Size: 83 KiB |
|
@ -114,7 +114,9 @@ acme_reload_services:
|
|||
acme_restart_services:
|
||||
- 'gitea'
|
||||
|
||||
acme_domain_unwant_list: []
|
||||
acme_domain_unwant_list:
|
||||
- name: 'backwesen.de'
|
||||
- name: 'www.backwesen.de'
|
||||
# - name: 'example.com'
|
||||
|
||||
nginx_sites:
|
||||
|
@ -162,8 +164,6 @@ nginx_sites:
|
|||
- name: 'www.angel.systems'
|
||||
- name: 'einhornsystem.de'
|
||||
- name: 'www.einhornsystem.de'
|
||||
- name: 'backwesen.de'
|
||||
- name: 'www.backwesen.de'
|
||||
- name: 'git.l3d.ch'
|
||||
- name: 'www.git.l3d.ch'
|
||||
- name: 'files.l3d.ch'
|
||||
|
|
|
@ -1,2 +1,8 @@
|
|||
jmespath>=1.0.1
|
||||
passlib[bcrypt]>=1.7.4
|
||||
ansible
|
||||
ansible-core >= 2.16.0
|
||||
ansible-lint
|
||||
yamllint
|
||||
j2lint
|
||||
netaddr >= 0.9.0
|
||||
|
|
|
@ -1 +1 @@
|
|||
Subproject commit a3ac34e33dda8a0d5633ee8bb111aea6ddf62a90
|
||||
Subproject commit 09864d03a24a4ba3049e4825c3e045295ed2a670
|
|
@ -1,14 +0,0 @@
|
|||
server {
|
||||
listen 443 ssl http2;
|
||||
listen [::]:443 ssl http2;
|
||||
|
||||
server_name backwesen.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 301 https://git.l3d.ch$request_uri;
|
||||
}
|
||||
}
|
|
@ -1,14 +0,0 @@
|
|||
server {
|
||||
listen 443 ssl http2;
|
||||
listen [::]:443 ssl http2;
|
||||
|
||||
server_name www.backwesen.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 301 https://git.l3d.ch/$request_uri;
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue