2021-10-31 15:47:20 +03:00
|
|
|
location /api/ {
|
|
|
|
# add_header 'Access-Control-Allow-Origin' '*';
|
|
|
|
# add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS';
|
|
|
|
# add_header 'Access-Control-Allow-Headers' 'DNT,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Range';
|
|
|
|
# add_header 'Access-Control-Expose-Headers' 'Content-Length,Content-Range';
|
|
|
|
proxy_pass http://backend/;
|
|
|
|
}
|
|
|
|
|
|
|
|
location /multystub/ {
|
|
|
|
# add_header 'Access-Control-Allow-Origin' '*';
|
|
|
|
add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS';
|
|
|
|
add_header 'Access-Control-Allow-Headers' 'DNT,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Range';
|
|
|
|
add_header 'Access-Control-Expose-Headers' 'Content-Length,Content-Range';
|
|
|
|
proxy_pass http://multystub/;
|
2022-02-09 22:47:11 +03:00
|
|
|
}
|
|
|
|
|
2023-08-01 13:32:55 +03:00
|
|
|
location /ms/ {
|
|
|
|
# add_header 'Access-Control-Allow-Origin' '*';
|
|
|
|
add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS';
|
|
|
|
add_header 'Access-Control-Allow-Headers' 'DNT,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Range';
|
|
|
|
add_header 'Access-Control-Expose-Headers' 'Content-Length,Content-Range';
|
|
|
|
proxy_pass http://ms/;
|
|
|
|
}
|
|
|
|
|
2022-04-16 23:14:28 +03:00
|
|
|
location /red-coder/ {
|
|
|
|
# add_header 'Access-Control-Allow-Origin' '*';
|
|
|
|
add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS';
|
|
|
|
add_header 'Access-Control-Allow-Headers' 'DNT,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Range';
|
|
|
|
add_header 'Access-Control-Expose-Headers' 'Content-Length,Content-Range';
|
|
|
|
proxy_pass http://red_coder/;
|
|
|
|
}
|
|
|
|
|
2022-05-22 19:43:28 +03:00
|
|
|
location /cms/ {
|
|
|
|
# add_header 'Access-Control-Allow-Origin' '*';
|
|
|
|
add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS';
|
|
|
|
add_header 'Access-Control-Allow-Headers' 'DNT,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Range';
|
|
|
|
add_header 'Access-Control-Expose-Headers' 'Content-Length,Content-Range';
|
|
|
|
proxy_pass http://cms/;
|
|
|
|
}
|
|
|
|
|
2023-11-21 20:29:52 +03:00
|
|
|
location /sirius-x/attendance/ {
|
|
|
|
proxy_pass http://sirius.inno-js.ru:3002/;
|
|
|
|
proxy_set_header X-Forwarded-Proto $scheme;
|
|
|
|
}
|
|
|
|
|
2022-02-16 20:48:15 +03:00
|
|
|
location /socket.io/ {
|
|
|
|
|
2023-07-27 23:10:26 +03:00
|
|
|
proxy_pass http://websocket;
|
2022-02-16 20:48:15 +03:00
|
|
|
|
|
|
|
proxy_http_version 1.1;
|
|
|
|
proxy_redirect off;
|
|
|
|
|
|
|
|
proxy_set_header Host $host;
|
|
|
|
proxy_set_header X-Real-IP $remote_addr;
|
|
|
|
|
|
|
|
proxy_read_timeout 3600s;
|
|
|
|
|
|
|
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
|
|
|
|
|
|
proxy_set_header Upgrade $http_upgrade;
|
|
|
|
# proxy_set_header Connection $connection_upgrade;
|
|
|
|
proxy_set_header Connection "Upgrade";
|
|
|
|
}
|
|
|
|
|
|
|
|
location /static/ {
|
|
|
|
add_header 'Access-Control-Allow-Origin' '*.inno-js.ru';
|
|
|
|
add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS';
|
|
|
|
add_header 'Access-Control-Allow-Headers' 'DNT,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Range';
|
|
|
|
add_header 'Access-Control-Expose-Headers' 'Content-Length,Content-Range';
|
|
|
|
alias "/home/ijl/ijl/apps/";
|
2022-02-09 22:47:11 +03:00
|
|
|
}
|