Commit 7e399a4c by lizefeng

Update nginx.conf

parent 2d0b6118
...@@ -337,6 +337,22 @@ http { ...@@ -337,6 +337,22 @@ http {
proxy_pass http://172.31.255.193; proxy_pass http://172.31.255.193;
} }
} }
# 转发facebook manage admin ui
server {
listen 80;
server_name productreviews.admin.4kmiles.com;
location / {
proxy_pass http://172.31.255.4;
}
}
# 转发facebook manage admin api
server {
listen 7712;
server_name productreviews.admin.4kmiles.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