Add new server
This commit is contained in:
parent
b8e99abd92
commit
6048933394
3 changed files with 49 additions and 3 deletions
14
configs/nginx/proxy-vpn.nginx
Normal file
14
configs/nginx/proxy-vpn.nginx
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
stream {
|
||||
upstream vless_backend {
|
||||
server vpn.spectralvpn.ru:442;
|
||||
}
|
||||
|
||||
server {
|
||||
listen 442 reuseport;
|
||||
listen [::]:442 reuseport;
|
||||
proxy_pass vless_backend;
|
||||
proxy_protocol on;
|
||||
proxy_timeout 30s;
|
||||
proxy_connect_timeout 10s;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue