diff --git a/README.md b/README.md index f3d8669d..69573c85 100644 --- a/README.md +++ b/README.md @@ -158,10 +158,18 @@ There are various ways to achieve this, depending on your use case.

-
Access ports of containers connected to PIA

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

+-
Connect to the PIA through an HTTP proxy (i.e. with Firefox)

+ + *I cannot make it so far sadly.. maybe someone can enlighten !* + +

+ ## 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)