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:

https://45.33.60.233

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.

Maven

<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>

Gradle

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

Git

from msysgit/wiki

git config --global http.proxy http://127.0.0.1:3213
⚠️ **GitHub.com Fallback** ⚠️