不开放 80 端口,是否会成为特征 #5280
beast-whisperer
started this conversation in
General
Replies: 2 comments 1 reply
-
|
我开放了 做了个跳443的307 |
Beta Was this translation helpful? Give feedback.
1 reply
-
|
祖传配置,这样特征更少 #!/usr/bin/bash
HTTP_MASQUERADE_DEST='www.***********.com:80'
tee "***************/nginx.conf" <<__EOF__
user nginx;
worker_processes auto;
error_log /var/log/nginx/error.log notice;
pid /run/nginx.pid;
events {
worker_connections 256;
}
stream {
resolver 1.1.1.1 8.8.8.8 valid=60s ipv6=off;
map \$binary_remote_addr \$client_addr {
"~^(.{7}).*$" \$1;
default \$binary_remote_addr;
}
limit_conn_zone \$server_port\$client_addr zone=conn_per_client:1m;
server {
listen 80;
proxy_pass \$backend;
limit_conn conn_per_client 6;
proxy_upload_rate 8192;
proxy_download_rate 16384;
}
map "" \$backend {
default $HTTP_MASQUERADE_DEST;
}
}
__EOF__ |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
目前我使用 vless + reality。只需要一个 443 端口就可以了。所以没有开放 80 端口。
但是普通网站,访问 80 端口时,可能会返回一个重定向,或者返回跟 443 一样的内容。
如果我不开放 80 端口,是不是也会成为一种特征。
Beta Was this translation helpful? Give feedback.
All reactions