tprasadtp
tprasadtp
As defined in [docs](https://tprasadtp.github.io/protonvpn-docker/#/README?id=protonvpn_server), You must set `PROTONVPN_TIER` to `2` and set `PROTONVPN_SERVER` to one of the secure core servers like `IS-DE#1`. Secure core is nothing special in terms of...
I think we will add more complexity by adding custom category/categories. If you have suggestions for more generic categories please feel free to add them, but adding a custom one...
Its a good idea. But is it worth the effort? no offense, but you can easily use sample yaml provided as a template and just edit it. most effort would...
Can you exec into container and check if ```bash curl --fail \ -vvv --location \ --max-time 20 \ --user-agent 'protonvpn-cli-docker' \ --header 'x-pm-appversion: LinuxVPN_2.2.6' \ --header 'x-pm-apiversion: 3' \ --header...
Can you post output of following ```console ip r curl -s ipinfo.io | jq ".timezone" ``` If both fails from within container, check if https://api.protonvpn.ch/vpn/logicals is reachable from the host...
Can you check connectivity from within the container? and also check if DNS inside container works? I guess DNS inside the container is broken. check resolve.conf inside the container or...
Can you override entrypoint and run a shell instead and run`curl -vvv https://api.protonvpn.ch/vpn/logicals`
Dont use docker-compose, use docker. ```console docker run \ --entrypoint /usr/bin/bash \ -it \ --name=protonvpn \ --device=/dev/net/tun \ --cap-add=NET_ADMIN \ --env PROTONVPN_USERNAME="xxxx" \ --env PROTONVPN_PASSWORD="xxxx" \ --env PROTONVPN_TIER=0 \ --env...
Can you try `curl -vvvv ipinfo.io`
Increase curl timeouts to 30s or more.