generated from DO1JLR/ansible_playbook_template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #115 from DO1JLR/u
U
- Loading branch information
Showing
11 changed files
with
46 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule general
updated
2 files
+3 −4 | tests/integration/targets/snap/tasks/main.yml | |
+20 −23 | tests/integration/targets/snap/tasks/test_channel.yml |
Submodule prometheus
updated
11 files
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule robertdebock.dovecot
updated
2 files
+3 −3 | .github/workflows/molecule.yml | |
+3 −3 | .gitlab-ci.yml |
Submodule robertdebock.fail2ban
updated
2 files
+3 −3 | .github/workflows/molecule.yml | |
+3 −3 | .gitlab-ci.yml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
17 changes: 17 additions & 0 deletions
17
templates/files/nginx/sites/fsck-2024.winkekatze.tv_tls.conf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
server { | ||
listen 443 ssl http2; | ||
listen [::]:443 ssl http2; | ||
|
||
server_name fsck-2024.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/fsck-2024.winkekatze.tv; | ||
|
||
location / { | ||
charset utf-8; | ||
try_files $uri $uri/ =404; | ||
} | ||
} |
14 changes: 14 additions & 0 deletions
14
templates/files/nginx/sites/www.fsck-2024.winkekatze.tv_tls.conf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
server { | ||
listen 443 ssl http2; | ||
listen [::]:443 ssl http2; | ||
|
||
server_name www.fsck-2024.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://fsck-2024.winkekatze.tv$request_uri; | ||
} | ||
} |