mirror of
https://github.com/bitwarden/server.git
synced 2024-11-21 12:05:42 +01:00
9a12992b59
* Add server reverse proxy configuration example for docker compose * Use n + 100 for Identity load balancer port
19 lines
739 B
Plaintext
19 lines
739 B
Plaintext
COMPOSE_PROJECT_NAME=BitwardenServer
|
|
# Ensure the MSSQL_PASSWORD is complex and follows the password policy defined at
|
|
# https://docs.microsoft.com/en-us/sql/relational-databases/security/password-policy?view=sql-server-ver15
|
|
MSSQL_PASSWORD=SET_A_PASSWORD_HERE_123
|
|
MAILCATCHER_PORT=1080
|
|
|
|
# Alternative databases
|
|
POSTGRES_PASSWORD=SET_A_PASSWORD_HERE_123
|
|
MYSQL_ROOT_PASSWORD=SET_A_PASSWORD_HERE_123
|
|
|
|
# IdP configuration
|
|
# Complete using the values from the Manage SSO page in the web vault
|
|
IDP_SP_ENTITY_ID=http://localhost:51822/saml2
|
|
IDP_SP_ACS_URL=http://localhost:51822/saml2/yourOrgIdHere/Acs
|
|
|
|
# Optional reverse proxy configuration
|
|
# Should match server listen ports in reverse-proxy.conf
|
|
API_PROXY_PORT=4100
|
|
IDENTITY_PROXY_PORT=33756 |