diff options
author | Sam Chudnick <sam@chudnick.com> | 2023-06-25 09:52:36 -0400 |
---|---|---|
committer | Sam Chudnick <sam@chudnick.com> | 2023-06-25 09:52:36 -0400 |
commit | 95b73daa36b23565a8566f71f9b202d3459b685f (patch) | |
tree | cb17b021be70e7868d0ec235a761f0ecdc80f3f2 /data/bookstack |
Diffstat (limited to 'data/bookstack')
-rw-r--r-- | data/bookstack/bookstack.conf.j2 | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/data/bookstack/bookstack.conf.j2 b/data/bookstack/bookstack.conf.j2 new file mode 100644 index 0000000..0dd6f63 --- /dev/null +++ b/data/bookstack/bookstack.conf.j2 | |||
@@ -0,0 +1,27 @@ | |||
1 | server { | ||
2 | listen 443 ssl; | ||
3 | server_name {{ bookstack_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 | location / { | ||
17 | proxy_pass http://127.0.0.1:{{ bookstack_external_port }}/; | ||
18 | } | ||
19 | |||
20 | } | ||
21 | |||
22 | server { | ||
23 | listen 80; | ||
24 | listen [::]:80; | ||
25 | server_name {{ bookstack_server_name }}; | ||
26 | return 301 https://$host$request_uri; | ||
27 | } | ||