Update default.conf

This commit is contained in:
Mikhail 2023-12-12 09:19:38 +00:00
parent ee7e960e49
commit 8504e4a778

@ -104,12 +104,22 @@ server {
add_header Access-Control-Allow-Credentials true always; add_header Access-Control-Allow-Credentials true always;
add_header Access-Control-Allow-Headers content-type,authorization always; add_header Access-Control-Allow-Headers content-type,authorization always;
add_header Access-Control-Allow-Methods OPTIONS,GET,POST,PATCH,PUT,DELETE; add_header Access-Control-Allow-Methods OPTIONS,GET,POST,PATCH,PUT,DELETE;
if ($host = squiz.pena.digital) { proxy_pass http://10.6.0.23:1488/;
proxy_pass http://10.6.0.23:1488/; }
}
if ($host = hbpn.link) { location /answer {
proxy_pass http://10.6.0.23:1490/; if ($request_method = OPTIONS) {
add_header Access-Control-Allow-Origin $http_origin always;
add_header Access-Control-Allow-Credentials true always;
add_header Access-Control-Allow-Headers content-type,authorization always;
add_header Access-Control-Allow-Methods OPTIONS,GET,POST,PATCH,PUT,DELETE;
return 200;
} }
add_header Access-Control-Allow-Origin $http_origin always;
add_header Access-Control-Allow-Credentials true always;
add_header Access-Control-Allow-Headers content-type,authorization always;
add_header Access-Control-Allow-Methods OPTIONS,GET,POST,PATCH,PUT,DELETE;
proxy_pass http://10.6.0.23:1490/;
} }
location /squizstorer/ { location /squizstorer/ {