diff options
Diffstat (limited to 'data/text_generation')
| -rw-r--r-- | data/text_generation/text_generation.conf.j2 | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/data/text_generation/text_generation.conf.j2 b/data/text_generation/text_generation.conf.j2 new file mode 100644 index 0000000..ca78d4a --- /dev/null +++ b/data/text_generation/text_generation.conf.j2 | |||
| @@ -0,0 +1,37 @@ | |||
| 1 | server { | ||
| 2 | listen 443 ssl; | ||
| 3 | server_name {{ text_generation_server_name }}; | ||
| 4 | |||
| 5 | ssl_certificate /etc/letsencrypt/live/chudnick.com/fullchain.pem; | ||
| 6 | ssl_certificate_key /etc/letsencrypt/live/chudnick.com/privkey.pem; | ||
| 7 | add_header Strict-Transport-Security "max-age=31536000" always; | ||
| 8 | ssl_stapling on; | ||
| 9 | ssl_stapling_verify on; | ||
| 10 | |||
| 11 | # Security / XSS Mitigation Headers | ||
| 12 | add_header X-Frame-Options "SAMEORIGIN"; | ||
| 13 | add_header X-XSS-Protection "1; mode=block"; | ||
| 14 | add_header X-Content-Type-Options "nosniff"; | ||
| 15 | |||
| 16 | # authelia | ||
| 17 | include /etc/nginx/snippets/authelia-location.conf; | ||
| 18 | |||
| 19 | location / { | ||
| 20 | #authelia | ||
| 21 | include /etc/nginx/snippets/proxy.conf; | ||
| 22 | include /etc/nginx/snippets/authelia-authrequest.conf; | ||
| 23 | |||
| 24 | proxy_pass http://127.0.0.1:{{ text_generation_external_port }}/; | ||
| 25 | proxy_set_header Upgrade $http_upgrade; | ||
| 26 | proxy_set_header Connection "upgrade"; | ||
| 27 | |||
| 28 | } | ||
| 29 | |||
| 30 | } | ||
| 31 | |||
| 32 | server { | ||
| 33 | listen 80; | ||
| 34 | listen [::]:80; | ||
| 35 | server_name {{ text_generation_server_name }}; | ||
| 36 | return 301 https://$host$request_uri; | ||
| 37 | } | ||
