From b6c45bc386215f8accb2ee4c7ed3dd2a6475b9ae Mon Sep 17 00:00:00 2001 From: NXShock Date: Mon, 2 Jun 2025 17:56:16 +0500 Subject: [PATCH] Add unix socket example --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 350b26a..c4aca98 100644 --- a/README.md +++ b/README.md @@ -26,6 +26,7 @@ AcmeChallengePath = "/var/lib/letsencrypt" # Path for ACME challenge files # Map of hostname -> redirect URL [TLS] -"git.host.com" = "tcp://127.0.0.1:8001" # TCP redirect -"www.host.com" = "file:///srv/http" # simple static file server from `/srv/http` +"git.host.com" = "tcp://127.0.0.1:8001" # TCP redirect +"unix.host.com" = "unix:///var/lib/app/app.socket" # serve unix socket +"www.host.com" = "file:///srv/http" # simple static file server from `/srv/http` ```