Nginx:设置为HTTP代理服务器上网
Posted kanguolaikanguolaik
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Nginx:设置为HTTP代理服务器上网相关的知识,希望对你有一定的参考价值。
一、设置NGINX为HTTP代理服务器
1.1 设置Nginx为HTTP代理服务器上网,只需要3步(vim /usr/local/nginx/conf/nginx.conf):
1. 增加dns解析resolver。 可以查看/etc/resolv.conf中的配置。
2. 增加server。 server_name可以有也可以没有,如果没有则指直接使用IP,如果有则使用域名设置浏览器代理地址。
3. 增加proxy_pass。
1.2 完整的配置文件:
#user nobody;
worker_processes 1;
events
worker_connections 1024;
http
log_format main '$remote_addr - $remote_user [$time_local] "$request" '
'$status $body_bytes_sent "$http_referer" '
'"$http_user_agent" "$http_x_forwarded_for"';
access_log logs/access.log main;
resolver 8.8.8.8;
server
listen 8080;
location /
proxy_pass $scheme://$http_host$request_uri;
二、设置浏览器的代理(以IE为例)
设置 -> Internet选项 -> 连接 -> 局域网设置 -> 代理服务器
填写IP和Port即可。
三、nginx不支持https正向代理
因为nginx不支持CONNECT,所以无法正向代理https网站。
参考资料:
nginx设置为代理服务器上网:http://zhwen.org/xlog/?p=633
nginx配置正向HTTP代理服务器:http://yzmcat.blog.163.com/blog/static/12964119201221892756913/
以上是关于Nginx:设置为HTTP代理服务器上网的主要内容,如果未能解决你的问题,请参考以下文章