From 4aeebeb337d6090d0fcbeb4ed4bc6d043f7d3f0e Mon Sep 17 00:00:00 2001 From: erdgeist Date: Mon, 6 Jan 2025 04:24:18 +0100 Subject: Suggest protecting fullnarp behind basic auth --- fullnarp.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/fullnarp.py b/fullnarp.py index 2007749..4feff59 100644 --- a/fullnarp.py +++ b/fullnarp.py @@ -15,6 +15,9 @@ This is best served by an nginx block that should look a bit like this, with a halfnarp2 checked out in the home of user halfnarp: location /fullnarp/ { + auth_basic "Content Teams Only"; + auth_basic_user_file fullnarp.pw; + alias /home/halfnarp/halfnarp2/static/; index fullnarp.html; } -- cgit v1.2.3