diff --git a/.env.sample b/.env.sample index 20e3ac2..972f822 100644 --- a/.env.sample +++ b/.env.sample @@ -7,6 +7,13 @@ DOMAIN=lasuite-docs.example.com LETS_ENCRYPT_ENV=production +############################################################################## +# SECRETS +############################################################################## +SECRET_DJANGO_SECRET_KEY=v1 +SECRET_OIDC_RP_CLIENT_SECRET=v1 +SECRET_DJANGO_SUPERUSER_PASSWORD=v1 + ############################################################################## # BASIC SETTINGS ############################################################################## diff --git a/compose.yml b/compose.yml index 67b493f..2fe157d 100644 --- a/compose.yml +++ b/compose.yml @@ -86,7 +86,9 @@ services: app: image: lasuite/impress-frontend:v3.4.2 networks: - - backend + backend: + aliases: + - lasuite-app deploy: labels: - "traefik.enable=false" diff --git a/nginx.conf b/nginx.conf index efa1b30..3ae1e1c 100644 --- a/nginx.conf +++ b/nginx.conf @@ -3,7 +3,7 @@ upstream docs_backend { } upstream docs_frontend { - server app:8080 fail_timeout=0; + server lasuite-app:8080 fail_timeout=0; } server {