nginx正向代理

我们平时用的最多的最常见的是反向代理。反向代理想必都会配置的,有不会的可以到本博客里面搜索下,有相关文档。 那么nginx的正向代理是如何配置的呢?
server {
	listen 8090;
	location / {
			resolver 218.85.157.99 218.85.152.99;
			resolver_timeout 30s;
			proxy_pass http://$host$request_uri;
	}
	access_log  /data/httplogs/proxy-$host-aceess.log;      
}
就这么简单哈。 测试: http://www.ttlsa.com:8090 resolver指令 语法: resolver address ... [valid=time]; 默认值: — 配置段: http, server, location 配置DNS服务器IP地址。可以指定多个,以轮询方式请求。 nginx会缓存解析的结果。默认情况下,缓存时间是名字解析响应中的TTL字段的值,可以通过valid参数更改。 resolver_timeout指令 语法: resolver_timeout time; 默认值: resolver_timeout 30s; 配置段: http, server, location 解析超时时间。 如需转载请注明出处:http://www.ttlsa.com/html/3287.html

你可能感兴趣的:(nginx,正向代理,resolver)