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 #9 from DO1JLR/aalend
Adding aalend geekend
- Loading branch information
Showing
5 changed files
with
37 additions
and
2 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 do1jlr.dotfiles
updated
34 files
17 changes: 17 additions & 0 deletions
17
templates/files/nginx/sites/aalen-geekend-23.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 aalen-geekend-23.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/aalen-geekend-23.winkekatze.tv; | ||
|
||
location / { | ||
charset utf-8; | ||
try_files $uri $uri/ =404; | ||
} | ||
} |
14 changes: 14 additions & 0 deletions
14
templates/files/nginx/sites/www.aalen-geekend-23.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.aalen-geekend-23.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://aalen-geekend-23.winkekatze.tv$request_uri; | ||
} | ||
} |