From: Giorgio Ravera Date: Sat, 24 Jan 2026 15:04:10 +0000 (+0100) Subject: Updated README.md & reset version number X-Git-Tag: v0.0.1~26 X-Git-Url: http://git.giorgioravera.it/?a=commitdiff_plain;h=7c94cf4cf023315a9856787aa71858a1cf6263e6;p=network-manager.git Updated README.md & reset version number --- diff --git a/README.md b/README.md index 144867e..5af0026 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ This solution allows you to manage hosts, DNS zones, DHCP leases, and certificat Designed to run easily via **Docker** and **Docker Compose**, with configuration via environment variables. -This project is currently under development. For upcoming tasks and planned improvements, please refer to the [TODO list](TODO.list) file. +This project is currently under development. For upcoming tasks and planned improvements, please refer to the [TODO list](TODO.md) file. --- @@ -102,7 +102,7 @@ services: ADMIN_USER: "${ADMIN_USER:-admin}" ADMIN_PASSWORD: "${ADMIN_PASSWORD:-admin}" ADMIN_PASSWORD_HASH_FILE: "/run/secrets/admin_password_hash" - # Session (opzionale) + # Session key (optional) # SESSION_SECRET: "****ReplaceWithYourSecret*****" volumes: - ./data:/data @@ -170,7 +170,7 @@ Generate a strong secret: openssl rand -base64 64 ``` Then: -SESSION_SECRET: “paste-the-secret-here” +`SESSION_SECRET`: “paste-the-secret-here” --- @@ -204,8 +204,8 @@ docker compose up -d --force-recreate --- ## 🔒 Security Checklist -- Use *ADMIN_PASSWORD_HASH_FILE* in production -- Disable *SESSION_SECRET* for automatic generation -- Set secure=True on cookies if you use HTTPS +- Use `ADMIN_PASSWORD_HASH_FILE` in production +- Disable `SESSION_SECRET` for automatic generation +- Set `secure=True` on cookies if you use HTTPS - Use a reverse proxy with TLS - Do not put passwords in the repository diff --git a/settings/config.py b/settings/config.py index c0bc265..7e7aab3 100644 --- a/settings/config.py +++ b/settings/config.py @@ -4,10 +4,10 @@ # BASEIMG # --------------------------------------------------------- BASEIMG_NAME = "network-manager-distroless" -BASEIMG_VERSION = "0.3" +BASEIMG_VERSION = "0.1" # --------------------------------------------------------- # APP # --------------------------------------------------------- APP_NAME = "network-manager" -APP_VERSION = "0.2.0" +APP_VERSION = "0.0.1"