-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnginx.conf
34 lines (27 loc) · 882 Bytes
/
nginx.conf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
server {
listen 80 default_server;
listen [::]:80 default_server;
server_name _;
root /usr/share/nginx/html;
expires 10m;
add_header Cache-Control "public";
add_header Content-Security-Policy "upgrade-insecure-requests;require-trusted-types-for 'script';frame-ancestors 'none';base-uri 'none';form-action 'none';default-src 'none';style-src 'self';script-src 'self';img-src 'self'";
error_page 500 502 503 504 /50x.html;
error_page 404 /404.html;
location = /50x.html {
root /usr/share/nginx/html;
}
location = / {
return 301 https://hawhh.de/calendarbot/;
}
location = /.well-known/security.txt {
default_type "text/plain; charset=utf-8";
return 200 "Contact: mailto:[email protected]
Preferred-Languages: de, en
Canonical: https://hawhh.de/.well-known/security.txt
";
}
location / {
try_files $uri $uri/ =404;
}
}