Update admin.conf
All checks were successful
Deploy / CreateImage (push) Successful in 10m42s
Deploy / DeployService (push) Successful in 22s

This commit is contained in:
skeris 2025-03-07 17:29:16 +00:00
parent 76258e2659
commit e83302af2a

@ -64,6 +64,14 @@ server {
}
location /heruvym/v1.0.0/ {
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,sess always;