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 #242 from DO1JLR/dhcp24
DHCP24
- Loading branch information
Showing
9 changed files
with
41 additions
and
6 deletions.
There are no files selected for viewing
Submodule posix
updated
4 files
+2 −2 | .azure-pipelines/azure-pipelines.yml | |
+58 −46 | README.md | |
+3 −0 | changelogs/fragments/587_update_README.yml | |
+3 −0 | changelogs/fragments/588_ci_enable_devel.yml |
Submodule mysql
updated
5 files
Submodule prometheus
updated
7 files
+8 −0 | CHANGELOG.rst | |
+1 −1 | changelogs/.plugin-cache.yaml | |
+72 −67 | changelogs/changelog.yaml | |
+1 −1 | galaxy.yml | |
+3 −3 | roles/prometheus/tasks/configure.yml | |
+1 −1 | roles/prometheus/templates/prometheus.service.j2 | |
+0 −1 | roles/prometheus/vars/main.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
Submodule unattended_upgrades
updated
from 9aeee3 to d4e72c
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 dhcp24.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/dhcp24.winkekatze.tv; | ||
|
||
location / { | ||
charset utf-8; | ||
try_files $uri $uri/ =404; | ||
} | ||
} |
14 changes: 14 additions & 0 deletions
14
templates/files/nginx/sites/www.dhcp24.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.dhcp24.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://dhcp24.winkekatze.tv$request_uri; | ||
} | ||
} |