月度归档: 2022 年 5 月

2 篇文章

thumbnail
Nginx反代V2Ray的完整配置文件
# cat /etc/nginx/conf.d/default.conf server { listen 80; listen 443 ssl; server_name example.com; # example.com改成你的伪装域名 #access_log /var/log/nginx/host.access.log main; # Ngin…
thumbnail
Nginx反向代理获取用户正确的IP
location /example { proxy_redirect off; proxy_intercept_errors on; error_page 400 = https://example.com/; proxy_pass http://127.0.0.1:5055; #假设WebSocket监听端口为5055 proxy_http_ve…