淘先锋技术网

首页 1 2 3 4 5 6 7

server{
listen 2010 ssl; #nginx服务端口
server_name www.xueli.plus; #域名
root “F:/爬虫/wuhan-web.py”;#应用路劲
index index.html index.htm;
ssl_certificate “D:/zhengshu/5155147_xueli.plus.pem”;#证书文件
ssl_certificate_key “D:/zhengshu/5155147_xueli.plus.key”;#证书文件
location /{
proxy_pass http://172.16.128.196:1010; #要代理的IP
}
}