赞
踩
server { resolver_timeout 5s; resolver 10.10.10.10; #指定DNS服务器IP地址 listen 10090; access_log /var/log/proxy/nginx_logs/procy_10090_accept.log; location / { proxy_pass http://$http_host; #设定代理服务器的协议和地址 proxy_set_header Host $http_host; proxy_buffers 256 8k; proxy_max_temp_file_size 0k; proxy_connect_timeout 30; } } server { resolver_timeout 5s; resolver 10.10.10.10; #指定DNS服务器IP地址 listen 10091; access_log /var/log/proxy/nginx_logs/procy_10091_accept.log; location / { proxy_pass https://$http_host; #设定代理服务器的协议和地址 proxy_set_header Host $http_host; proxy_buffers 256 8k; proxy_max_temp_file_size 0k; proxy_connect_timeout 30; } }
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。