From 9c4eb145c466928b2c7ce8516a5a9e6f02557665 Mon Sep 17 00:00:00 2001 From: David Huss <dh@atoav.com> Date: Tue, 5 Nov 2024 15:48:25 +0100 Subject: [PATCH] Update Readme --- README.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/README.md b/README.md index c308b71..14a983a 100644 --- a/README.md +++ b/README.md @@ -5,6 +5,23 @@ See [this](https://blog.r0b.io/post/minimal-rpi-kiosk/) for a description of how to start chromium via .xinit +## note about apt and git + +In `/etc/apt/apt.conf.d/proxy.conf` there is a proxy connection setup: + +``` +# "socks5h" means proxy with DNS resolving ability +Acquire { + HTTP::proxy "socks5h://127.0.0.1:8080"; + HTTPS::proxy "socks5h://127.0.0.1:8080"; +} +``` + +So we can then ssh into the machine with a tunnel + +```bash +ssh -R 127.0.0.1:8080 mediactl +``` ## Connection diagram -- GitLab