nginx进行代理8090端口:
server {
listen 8081;
listen 8082;
listen 8083;
server_name 10.10.61.247;
location / {
proxy_pass http://10.10.61.247:8090;
proxy_set_header Host $http_host;
}
}
常用nginx命令
start nginx
nginx.exe -s stop
nginx.exe -s reload