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 #47 from DO1JLR/homebox
Homebox
- Loading branch information
Showing
9 changed files
with
48 additions
and
3 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 posix
updated
2 files
+2 −0 | changelogs/fragments/421-remove-deprecation-warning.yml | |
+5 −4 | plugins/action/synchronize.py |
Submodule prometheus
updated
28 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
Submodule l3d.homebox
added at
666575
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
server { | ||
listen 443 ssl http2; | ||
listen [::]:443 ssl http2; | ||
|
||
server_name i.l3d.ch; | ||
|
||
include snippets/tls_parameters_{{ site.name }}.snippet.conf; | ||
include snippets/tls_certificate_{{ site.name }}.snippet.conf; | ||
include snippets/logging_{{ site.name }}.snippet.conf; | ||
|
||
location / { | ||
proxy_pass http://localhost:7745; | ||
client_max_body_size 10M; | ||
proxy_read_timeout 1600; | ||
proxy_set_header Host $host; | ||
proxy_set_header X-Real-IP $remote_addr; | ||
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; | ||
proxy_set_header X-Forwarded-Proto $scheme; | ||
} | ||
} |
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.i.l3d.ch; | ||
|
||
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://i.l3d.ch/; | ||
} | ||
} |