44 lines
812 B
Plaintext
44 lines
812 B
Plaintext
## 公司其他域名的切换
|
|
|
|
# 4s店微信
|
|
server {
|
|
listen 8080;
|
|
server_name wx4s.sinoassist.com;
|
|
|
|
location / {
|
|
proxy_pass http://192.168.10.7:8777;
|
|
}
|
|
}
|
|
|
|
|
|
# 微信供应商
|
|
server {
|
|
listen 8080;
|
|
server_name wxdd.sinoassist.com;
|
|
|
|
location / {
|
|
proxy_pass http://192.168.10.7:8568;
|
|
}
|
|
}
|
|
|
|
# 呼叫中心接口
|
|
server {
|
|
listen 8080;
|
|
server_name apicc.sinoassist.com;
|
|
include /opt/bitnami/nginx/conf/ssl.sinoassist.conf;
|
|
|
|
location / {
|
|
proxy_pass http://192.168.5.201:8080;
|
|
}
|
|
}
|
|
|
|
# 呼叫中心接口websocket
|
|
server {
|
|
listen 8080;
|
|
server_name apiccws.sinoassist.com;
|
|
include /opt/bitnami/nginx/conf/ssl.sinoassist.conf;
|
|
|
|
location / {
|
|
proxy_pass http://192.168.5.201:1884;
|
|
}
|
|
} |