From 2cb66e626da01bd996aec4dc97e07d87260bec91 Mon Sep 17 00:00:00 2001 From: Vince Grassia <593223+vgrassia@users.noreply.github.com> Date: Wed, 14 Jan 2026 12:23:27 -0500 Subject: [PATCH 1/2] Update example domain to one specified by the IANA for testing. --- run_self-hosting-image.sh | 2 +- self-host/settings.env | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/run_self-hosting-image.sh b/run_self-hosting-image.sh index 7fc8c3330..a9113c753 100755 --- a/run_self-hosting-image.sh +++ b/run_self-hosting-image.sh @@ -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 \ No newline at end of file diff --git a/self-host/settings.env b/self-host/settings.env index bb7e936cf..e2d5b7248 100644 --- a/self-host/settings.env +++ b/self-host/settings.env @@ -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 From 43dfb9083369c8bea8dc77f45a85cfc67df0b4d1 Mon Sep 17 00:00:00 2001 From: Vince Grassia <593223+vgrassia@users.noreply.github.com> Date: Wed, 14 Jan 2026 14:14:57 -0500 Subject: [PATCH 2/2] Fixed domain --- run_self-hosting-image-ssl.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run_self-hosting-image-ssl.sh b/run_self-hosting-image-ssl.sh index 170d85bee..cb16f20ca 100755 --- a/run_self-hosting-image-ssl.sh +++ b/run_self-hosting-image-ssl.sh @@ -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 \