3 Commits

4 changed files with 16 additions and 4 deletions

View File

@@ -65,8 +65,8 @@ server {
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://212.193.59.173:8078/;
proxy_pass http://35.193.122.195/;
proxy_pass http://212.193.59.173:8078/;
# proxy_pass http://35.193.122.195/;
}
}

View File

@@ -57,8 +57,8 @@ server {
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://212.193.59.173:8078/;
proxy_pass http://35.193.122.195/;
proxy_pass http://212.193.59.173:8078/;
# proxy_pass http://35.193.122.195/;
}
}

View File

@@ -33,6 +33,10 @@ http {
server 212.193.59.173:8043;
}
upstream red_coder {
server 212.193.59.173:8045;
}
upstream admin {
server 212.193.59.173:8090;
}

View File

@@ -14,6 +14,14 @@ location /multystub/ {
proxy_pass http://multystub/;
}
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/;
}
location /socket.io/ {
proxy_pass http://websocket;