nginx正向代理配置如下:
复制代码代码示例:
server
{ listen 8080; server_name www.it.net.cn; index index.html index.htm index.php; root /home/wwwroot; location / { resolver 192.168.8.88; proxy_pass $scheme://$http_host$request_uri; proxy_buffers 256 4k; } access_log off; }
以上配置的注意事项: 检测配置文件无误后,在浏览器中添加代理服务器的IP地址,就可以使用该Nginx正向代理了。 (责任编辑:IT) |