Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion run_self-hosting-image-ssl.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ docker run \
--name passwordless \
-p 5701:5701 \
-e BWP_PORT=5701 \
-e BWP_DOMAIN=yourdomain.local \
-e BWP_DOMAIN=example.local \
-e BWP_ENABLE_SSL=true \
-e BWP_ENABLE_SSL_CA=true \
-e BWP_SSL_CA_CERT=ssl.crt \
Expand Down
2 changes: 1 addition & 1 deletion run_self-hosting-image.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ docker build . -f self-host/Dockerfile -t bitwarden/passwordless
docker run \
--name passwordless \
-p 5701:5701 \
-e BWP_DOMAIN=yourdomain.com \
-e BWP_DOMAIN=example.com \
-e BWP_ENABLE_SSL=false \
-v /your/path/passwordless-self-hosting:/etc/bitwarden_passwordless \
bitwarden/passwordless
2 changes: 1 addition & 1 deletion self-host/settings.env
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#####################

# Server hostname
BWP_DOMAIN=passwordless.yourdomain.com
BWP_DOMAIN=passwordless.example.com

# Port your application is publicly accessed on.
BWP_PORT=5701
Expand Down
Loading