mirror of
https://github.com/ArcticFoxes-net/Synapse-Ubuntu-ZFS
synced 2024-11-09 20:31:33 -05:00
Create syncv3.conf
Signed-off-by: wj25czxj47bu6q <96372288+wj25czxj47bu6q@users.noreply.github.com>
This commit is contained in:
parent
0bd4798962
commit
9f67f3de77
26
etc/nginx/conf.d/syncv3.conf
Normal file
26
etc/nginx/conf.d/syncv3.conf
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
server {
|
||||||
|
listen 443 ssl;
|
||||||
|
listen [::]:443 ssl;
|
||||||
|
|
||||||
|
server_name syncv3.arcticfoxes.net;
|
||||||
|
|
||||||
|
include /etc/nginx/ssl.conf;
|
||||||
|
include /etc/nginx/proxy.conf;
|
||||||
|
include /etc/nginx/headers.conf;
|
||||||
|
|
||||||
|
proxy_hide_header 'Access-Control-Allow-Credentials';
|
||||||
|
add_header 'Access-Control-Allow-Credentials' 'true' always;
|
||||||
|
proxy_hide_header 'Access-Control-Allow-Methods';
|
||||||
|
add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS' always;
|
||||||
|
proxy_hide_header 'Access-Control-Allow-Headers';
|
||||||
|
add_header 'Access-Control-Allow-Headers' 'Authorization,Content-Type,Accept,Origin,User-Agent,DNT,Cache-Control,X-Mx-ReqToken,Keep-Alive,X-Requested-With,If-Modified-Since' always;
|
||||||
|
proxy_hide_header 'Access-Control-Allow-Origin';
|
||||||
|
add_header 'Access-Control-Allow-Origin' '*' always;
|
||||||
|
proxy_hide_header 'Content-Security-Policy';
|
||||||
|
add_header 'Content-Security-Policy' "default-src 'none'; frame-ancestors 'none'; upgrade-insecure-requests; block-all-mixed-content; base-uri 'none'";
|
||||||
|
|
||||||
|
location / {
|
||||||
|
proxy_pass http://127.0.0.1:8008;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user