diff --git a/80.conf b/80.conf index 05f786e..803c2be 100644 --- a/80.conf +++ b/80.conf @@ -2,20 +2,13 @@ server { listen 80; server_name inno-ijl.ru; # index index.php index.html index.htm index.nginx-debian.html; - location / { + + 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://89.223.94.192:8079/; - } - - 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; + proxy_pass http://backend; } location /multystub/ { @@ -25,6 +18,14 @@ server { add_header 'Access-Control-Expose-Headers' 'Content-Length,Content-Range'; proxy_pass http://multystub/; } + + location / { + 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://89.223.94.192:8079/; + } } server {