1
0
mirror of https://github.com/ArcticFoxes-net/Synapse-Ubuntu-ZFS synced 2024-09-20 06:34:43 -04:00
Synapse-Ubuntu-ZFS/etc/nginx/conf.d/matrix-to.conf

17 lines
479 B
Plaintext
Raw Normal View History

2023-08-25 16:17:37 -04:00
server {
listen 443 ssl;
listen [::]:443 ssl;
server_name invite.arcticfoxes.net;
include /etc/nginx/ssl.conf;
include /etc/nginx/proxy.conf;
include /etc/nginx/headers.conf;
add_header Content-Security-Policy "default-src 'none'; connect-src *; img-src *; script-src 'self' 'unsafe-inline'; style-src 'self', upgrade-insecure-requests; block-all-mixed-content; base-uri 'none'";
location / {
proxy_pass http://127.0.0.1:5000;
2023-08-25 16:17:37 -04:00
}
}