refactor: [30388f42] Finale Komprimierung des Root-Verzeichnisses

- Konsolidiert Dockerfiles in .
- Verschiebt Datenbank- und Log-Dateien in .
- Organisiert Konfigurations- und Modelldateien in .
- Fasst Shell-Skripte in  zusammen.
- Verschiebt  nach .
- Verschiebt  nach .
- Das  Verzeichnis wurde in  verschoben.
- Behält Kern-Dateien (, , , ,  etc.) im Root-Verzeichnis, um die Lauffähigkeit zu gewährleisten.
This commit is contained in:
2026-03-06 11:41:44 +00:00
parent 3fc74922f2
commit 680b237def
36 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
FROM nginx:alpine
# Install apache2-utils to generate .htpasswd natively
RUN apk add --no-cache apache2-utils
# Create the user 'admin' with password 'gemini' using bcrypt (most secure & compatible)
RUN htpasswd -bc /etc/nginx/.htpasswd admin gemini
COPY nginx-proxy.conf /etc/nginx/nginx.conf