vpnhood / VpnHood

Undetectable Fast Portable VPN
GNU Lesser General Public License v2.1
992 stars 149 forks source link

hide my ip #486

Closed SalimiHabib closed 7 months ago

SalimiHabib commented 7 months ago

hi

Is it possible to use below config in nginx server to route traffic to my VPN-hood server . reason for this is IP masking . is it have affect on vpn server connectivity ?

also we user double IP in user connection and server gateway and it works fine .

http {
    server {
        listen 443;
        server_name _; #  catch-all server name

        location / {
            proxy_pass https://185.*.*.*;
        }
    }
}
SalimiHabib commented 7 months ago

453