pad config

This commit is contained in:
Mark Janssen 2024-09-25 14:26:34 +02:00
parent 51662e1dc3
commit 1adae2f702
Signed by: foobar
GPG key ID: D8674D8FC4F69BD2
2 changed files with 19 additions and 0 deletions

View file

@ -1,10 +1,25 @@
---
acme_domains:
- pad.bitlair.nl
etherpad_domain: pad.bitlair.nl
nginx_sites:
- server_name: "pad.bitlair.nl"
localproxy: "9001"
pre_config:
- "# WebSocket proxying - from https://nginx.org/en/docs/http/websocket.html"
- "map $http_upgrade $connection_upgrade {"
- " default upgrade;"
- " '' close;"
- "}"
config:
- "location / {"
- " # WebSocket proxying - from https://nginx.org/en/docs/http/websocket.html"
- " proxy_set_header Upgrade $http_upgrade;"
- " proxy_set_header Connection $connection_upgrade;"
- "}"
group_nft_input:
- "# Allow web-traffic from world"

View file

@ -1,5 +1,9 @@
# {{ ansible_managed }}
{% for line in site.pre_config | default([]) %}
{{ line }}
{% endfor %}
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;