Commit ae5f0553 by lizefeng

Update nginx.conf

parent 2c3c296c
...@@ -337,5 +337,71 @@ http { ...@@ -337,5 +337,71 @@ http {
} }
} }
# 转发facebook manage ui
server {
listen 80;
server_name vine.4kmiles.com;
location / {
proxy_pass http://172.31.255.6;
}
}
# 转发facebook manage api
server {
listen 7712;
server_name vine.4kmiles.com;
location / {
proxy_pass http://172.31.255.12;
}
}
# 转发facebook manage admin ui
server {
listen 80;
server_name vine.admin.4kmiles.com;
location / {
proxy_pass http://172.31.255.4;
}
}
# 转发facebook manage admin api
server {
listen 7712;
server_name vine.admin.4kmiles.com;
location / {
proxy_pass http://172.31.255.193;
}
}
# 转发facebook manage ui
server {
listen 80;
server_name vine.blsct.com;
location / {
proxy_pass http://172.31.255.6;
}
}
# 转发facebook manage api
server {
listen 7712;
server_name vine.blsct.com;
location / {
proxy_pass http://172.31.255.12;
}
}
# 转发facebook manage admin ui
server {
listen 80;
server_name vine.admin.blsct.com;
location / {
proxy_pass http://172.31.255.4;
}
}
# 转发facebook manage admin api
server {
listen 7712;
server_name vine.admin.blsct.com;
location / {
proxy_pass http://172.31.255.193;
}
}
include servers/*; include servers/*;
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment