我在的地方没有外网,但是有一台内网机器能连外网,想通过那台内网机器代理上网。按照网上 nginx 正向代理的配置,如下:
user nobody;
worker_processes 1;
error_log logs/error.log info;
events {
worker_connections 1024;
}
http {
include mime.types;
default_type application/octet-stream;
sendfile on;
keepalive_timeout 65;
server {
resolver xx.xx.xx.xx;
listen 22222;
location / {
proxy_pass $scheme://$http_host$request_uri;
proxy_set_header HOST $http_host;
proxy_buffers 256 4k;
proxy_max_temp_file_size 0;
proxy_connect_timeout 30;
proxy_send_timeout 60;
proxy_read_timeout 60;
proxy_next_upstream error timeout invalid_header http_502;
proxy_cache_valid 200 302 10m;
proxy_cache_valid 301 1h;
proxy_cache_valid any 1m;
}
}
}
然后我的 windows 主机,代理设置成内网机器的 ip 和端口,发现 400
access 日志如下:
xx.xx.xx.xx - - [21/Apr/2019:22:44:14 +0800] "CONNECT www.baidu.com:443 HTTP/1.1" 400 173 "-" "-"
error 日志如下:
2019/04/21 22:44:14 [info] 11993#0: *360 client sent invalid request while reading client request line, client: xx.xx.xx.xx, server: , request: "CONNECT www.baidu.com:443 HTTP/1.1"
请教一下,是哪儿配置的不对吗?
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.