mirror of
https://github.com/GrapheneOS/matrix.grapheneos.org.git
synced 2025-07-12 01:19:27 -04:00
add mta-sts configuration
This commit is contained in:
parent
341f7a3077
commit
12e5ad3a7e
1 changed files with 24 additions and 1 deletions
|
@ -108,7 +108,7 @@ http {
|
|||
server {
|
||||
listen 80;
|
||||
listen [::]:80;
|
||||
server_name matrix.grapheneos.org element.grapheneos.org;
|
||||
server_name matrix.grapheneos.org element.grapheneos.org mta-sts.matrix.grapheneos.org;
|
||||
|
||||
keepalive_timeout 0;
|
||||
|
||||
|
@ -197,6 +197,29 @@ http {
|
|||
}
|
||||
}
|
||||
|
||||
server {
|
||||
listen 443 ssl http2;
|
||||
listen [::]:443 ssl http2;
|
||||
server_name mta-sts.matrix.grapheneos.org;
|
||||
|
||||
root /srv/mta-sts;
|
||||
|
||||
keepalive_timeout 0;
|
||||
|
||||
include snippets/security-headers.conf;
|
||||
add_header Cross-Origin-Resource-Policy "same-origin" always;
|
||||
|
||||
location = / {
|
||||
return 301 https://grapheneos.org/articles/grapheneos-servers;
|
||||
}
|
||||
|
||||
location = /.well-known/mta-sts.txt {}
|
||||
|
||||
location / {
|
||||
return 404;
|
||||
}
|
||||
}
|
||||
|
||||
server {
|
||||
listen unix:/run/nginx/status.sock;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue