Updated readme

This commit is contained in:
Quentin McGaw
2019-06-08 09:36:48 +02:00
parent b494431070
commit 34ad99989a

View File

@@ -158,10 +158,18 @@ There are various ways to achieve this, depending on your use case.
</p></details>
- <details><summary>Access ports of containers connected to PIA</summary><p>
To access port `8000` of container `xyz` and `9000` of container `abc` connected to PIA, you will need a reverse proxy such as `qmcgaw/caddy-scratch`
To access port `8000` of container `xyz` and `9000` of container `abc` connected to PIA, you will need a reverse proxy such as `qmcgaw/caddy-scratch` (you can build it for **ARM**, see its readme)
1. Create the file *Caddyfile* with:
```sh
touch Caddyfile
chown 1000 Caddyfile
chmod 600 Caddyfile
```
with this content:
```ruby
:8000 {
proxy / xyz:8000
@@ -251,6 +259,12 @@ There are various ways to achieve this, depending on your use case.
</p></details>
- <details><summary>Connect to the PIA through an HTTP proxy (i.e. with Firefox)</summary><p>
*I cannot make it so far sadly.. maybe someone can enlighten !*
</p></details>
## For the paranoids
- You can review the code which essential consists in the [Dockerfile](https://github.com/qdm12/private-internet-access-docker/blob/master/Dockerfile) and [entrypoint.sh](https://github.com/qdm12/private-internet-access-docker/blob/master/entrypoint.sh)