From 34fef22a8341dc873945102bbd6357acf9867a38 Mon Sep 17 00:00:00 2001 From: Flancian <0@flancia.org> Date: Fri, 27 May 2022 00:25:11 +0200 Subject: [PATCH] autopushed --- podman.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/podman.md b/podman.md index 20248ff73..0a7115eb0 100644 --- a/podman.md +++ b/podman.md @@ -48,3 +48,16 @@ podman attach agora ``` ...to attach. CTRL-P CTRL-Q to detach gracefully. + +This is what I left running in [[hypatia]] as of [[2022-05-27]], sufficient to serve an HTTP only Agora (I'd add [[nginx]] to do SSL + caching, like in [[thecla]]/prod): + +``` +podman run -p 80:5017 --name agora -dt agora +``` + +The above requires running this as root to open up port 80 to non privileged processes: + +``` +sysctl -w net.ipv4.ip_unprivileged_port_start=80 +``` +