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 \ 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