## **Pro v1.2 版本nignx服务器客服端配置说明**
1.复制以下内容
~~~
location /
{
proxy_pass http://127.0.0.1:20199;
proxy_http_version 1.1;
proxy_read_timeout 360s;
proxy_redirect off;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header REMOTE-HOST $remote_addr;
add_header X-Cache $upstream_cache_status;
#Set Nginx Cache
add_header Cache-Control no-cache;
expires 12h;
}
~~~
2.点击刚添加的反向代理,后方的**配置文件**
![](https://img.kancloud.cn/98/a8/98a80d59cfb8c8d0b143642eaeb9e80f_1556x1064.png)
3.替换配置文件里10-24行并保存
![](https://img.kancloud.cn/b7/a8/b7a8397a030f81ae52ada1981d37420a_820x724.png)
替换后,点击保存
![](https://img.kancloud.cn/84/a0/84a0950ab2c307b3c1e7a1d9d04c004c_799x733.png)
nignx反向代理设置完毕。