Astrill - paulvi/notes GitHub Wiki
To fix the problem, make sure Astrill window is focused (click on it), then press Ctrl+J on keyboard. Enter this URL exactly with https:// prefix:
Click on OK button. You should be able to login now.
In case you still cannot login, please set Google DNS on your PC: 8.8.8.8 and 8.8.4.4 Then try again.
<proxy>
<id>astrill-proxy-http</id>
<active>true</active>
<protocol>http</protocol>
<host>127.0.0.1</host>
<port>3213</port>
</proxy>
<proxy>
<id>astrill-proxy-https</id>
<active>true</active>
<protocol>https</protocol>
<host>127.0.0.1</host>
<port>3213</port>
</proxy>
gradlew -Dhttp.proxyHost=127.0.0.1 -Dhttp.proxyPort=3213 -Dhttps.proxyHost=127.0.0.1 -Dhttps.proxyPort=3213
or project.properties in project root
systemProp.http.proxyHost=127.0.0.1
systemProp.http.proxyPort=3213
systemProp.https.proxyHost=127.0.0.1
systemProp.https.proxyPort=3213
from msysgit/wiki
git config --global http.proxy http://127.0.0.1:3213