We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi, I want to use the dockvpn behind a proxy. I try to assign
But this is not working, either I assign port through docker container or I modify the files 'run' and serverconfig'
How can I do it ?
The text was updated successfully, but these errors were encountered:
You'll need to change:
docker run
Sorry, something went wrong.
Run with different port:
CID=$(docker run -d --privileged -p 9999:1194/udp -p 8888:443/tcp jpetazzo/dockvpn)
When you downloaded the config file, open it in text editor and change:
<connection> remote 255.255.255.255 9999 udp </connection> <connection> remote 255.255.255.255 8888 tcp-client </connection>
Where 255.255.255.255 should be your server IP. In this example I used 9999 for UDP and 8888 for TCP
255.255.255.255
9999
UDP
8888
TCP
No branches or pull requests
Hi, I want to use the dockvpn behind a proxy.
I try to assign
But this is not working, either I assign port through docker container or I modify the files 'run' and serverconfig'
How can I do it ?
The text was updated successfully, but these errors were encountered: