Commit 304e7999 by lizefeng

Update nginx.conf

parent b549230f
......@@ -271,7 +271,7 @@ http {
listen 80;
server_name webhook.bailuntec.com;
location / {
proxy_pass http://172.31.255.197;
proxy_pass http://172.31.255.68;
}
}
# 转发facebook messenger ssl
......@@ -285,7 +285,23 @@ http {
ssl_ciphers ALL:!DH:!EXPORT:!RC4:+HIGH:+MEDIUM:!eNULL;
ssl_prefer_server_ciphers on;
location / {
proxy_pass http://172.31.255.197;
proxy_pass http://172.31.255.68;
}
}
# 转发facebook manage ui
server {
listen 80;
server_name fb.bailuntec.com;
location / {
proxy_pass http://172.31.255.6;
}
}
# 转发facebook manage api
server {
listen 7711;
server_name fb.bailuntec.com;
location / {
proxy_pass http://172.31.255.12;
}
}
......
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