feat: bump to version 1.0.3

This commit is contained in:
2026-05-02 20:43:49 +01:00
parent 30e018d583
commit 880891c6bd
5 changed files with 33 additions and 28 deletions
+4
View File
@@ -10,6 +10,10 @@ PHOTON_DOMAIN=photon.local
# PHOTON_SHARE_DOMAIN=share.photon.local
# COOKIE_DOMAIN=.photon.local
### Basic Auth Credentials (for Traefik) Use htpasswd to generate the password hash.
BASIC_AUTH_USER=admin
BASIC_AUTH_PASSWORD='$apr1$LbKLWjeg$i69pFbEbwQ61CtsjWGq/D0'
### Photon Worker Environment Variables
SCAN_RATE=10
+3
View File
@@ -18,6 +18,9 @@ services:
- "traefik.http.routers.photon.rule=Host(`${PHOTON_DOMAIN}`)"
- "traefik.http.routers.photon.service=photon"
- "traefik.http.services.photon.loadbalancer.server.port=80"
# Basic auth for dashboard (Replace this with your own credentials).
- "traefik.http.middlewares.photon-basic-auth.basicauth.users=${BASIC_AUTH_USER}:${BASIC_AUTH_PASSWORD}"
- "traefik.http.routers.photon.middlewares=photon-basic-auth"
# Custom domain for share links
- "traefik.http.routers.photon-share.rule=Host(`${PHOTON_SHARE_DOMAIN}`)"