Skip to content

Commit

Permalink
fix #155
Browse files Browse the repository at this point in the history
  • Loading branch information
MdreW committed Sep 16, 2024
1 parent 01fbf8d commit 6451264
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Docker-compose/.env.example
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ MONGO_DBPASSWORD=thatpassword
SATOSA_KEYS_FOLDER=./pki
# Keys filename
SATOSA_PRIVATE_KEY_FILENAME=privkey.pem
SATOSA_PUBLIC_KEY=cert.pem
SATOSA_PUBLIC_KEY_FILENAME=cert.pem

# BE CAREFUL HERE!
SATOSA_SALT=CHANGE_ME!
Expand Down
4 changes: 2 additions & 2 deletions Docker-compose/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ services:
ME_CONFIG_MONGODB_ADMINUSERNAME: "${MONGO_DBUSER:-satosa}"
ME_CONFIG_MONGODB_ADMINPASSWORD: "${MONGO_DBPASSWORD:-thatpassword}"
ME_CONFIG_MONGODB_URL: mongodb://${MONGO_DBUSER:-satosa}:${MONGO_DBPASSWORD:-thatpassword}@satosa-mongo:27017/
TZ: "${TZ:-Europe/Rome}"
: "${TZ:-Europe/Rome}"
networks:
- satosa-saml2spid
django_sp:
Expand Down Expand Up @@ -77,7 +77,7 @@ services:

- BASE_DIR=/satosa_proxy
- SATOSA_PRIVATE_KEY=${SATOSA_KEYS_FOLDER:-./pki}/${SATOSA_PRIVATE_KEY_FILENAME:-privkey.pem}
- SATOSA_PUBLIC_KEY=${SATOSA_KEYS_FOLDER:-./pki}/${SATOSA_CERT_FILENAME:-cert.pem}
- SATOSA_PUBLIC_KEY=${SATOSA_KEYS_FOLDER:-./pki}/${SATOSA_PUBLIC_KEY_FILENAME:-cert.pem}
- SATOSA_BASE=https://${SATOSA_HOSTNAME:-localhost}
- SATOSA_BASE_STATIC=https://${SATOSA_HOSTNAME:-localhost}/static
- SATOSA_DISCO_SRV=https://${SATOSA_HOSTNAME:-localhost}/static/disco.html
Expand Down

0 comments on commit 6451264

Please sign in to comment.