diff --git a/configs/config/params.conf b/configs/config/params.conf index d640acf..4156ff9 100644 --- a/configs/config/params.conf +++ b/configs/config/params.conf @@ -4,4 +4,4 @@ host = username = password = inbaund_id = 0 -inbaund_url = \ No newline at end of file +inbaund_url = vpn.spectralvpn.ru:442 \ No newline at end of file diff --git a/configs/nginx/proxy-vpn-ss.nginx b/configs/nginx/proxy-vpn-ss.nginx new file mode 100644 index 0000000..3ae63f3 --- /dev/null +++ b/configs/nginx/proxy-vpn-ss.nginx @@ -0,0 +1,14 @@ +stream { + upstream vless_backend { + server vpn.spectralvpn.ru:444; + } + + server { + listen 444 reuseport; + listen [::]:444 reuseport; + proxy_pass vless_backend; + proxy_protocol on; + proxy_timeout 30s; + proxy_connect_timeout 10s; + } +} \ No newline at end of file