Initial commit

This commit is contained in:
monoadmin
2026-04-10 15:36:34 -07:00
commit 42d5299e93
11 changed files with 3918 additions and 0 deletions

5
frontend/entrypoint.sh Normal file
View File

@@ -0,0 +1,5 @@
#!/bin/sh
USER="${NETDOC_USER:-admin}"
PASS="${NETDOC_PASS:-netdoc}"
printf "%s:%s\n" "$USER" "$(openssl passwd -apr1 "$PASS")" > /etc/nginx/.htpasswd
exec nginx -g "daemon off;"