mirror of
https://github.com/bitwarden/server.git
synced 2025-04-06 21:48:12 -05:00
more script fixes
This commit is contained in:
parent
8db17145bd
commit
df67bb796b
@ -30,8 +30,7 @@ read -p "(!) Do you want to use Let's Encrypt to generate a free SSL certificate
|
|||||||
|
|
||||||
if [ $LETS_ENCRYPT == 'y' ]
|
if [ $LETS_ENCRYPT == 'y' ]
|
||||||
then
|
then
|
||||||
echo -e "\n(!) Enter your email address (Let's Encrypt will send you certificate expiration reminders): "
|
read -p "(!) Enter your email address (Let's Encrypt will send you certificate expiration reminders): " EMAIL
|
||||||
read EMAIL
|
|
||||||
mkdir -p $OUTPUT_DIR/letsencrypt/live/$DOMAIN
|
mkdir -p $OUTPUT_DIR/letsencrypt/live/$DOMAIN
|
||||||
docker run -it --rm --name certbot -p 80:80 -v $OUTPUT_DIR/letsencrypt:/etc/letsencrypt/ certbot/certbot \
|
docker run -it --rm --name certbot -p 80:80 -v $OUTPUT_DIR/letsencrypt:/etc/letsencrypt/ certbot/certbot \
|
||||||
certonly --standalone --noninteractive --agree-tos --preferred-challenges http --email $EMAIL -d $DOMAIN
|
certonly --standalone --noninteractive --agree-tos --preferred-challenges http --email $EMAIL -d $DOMAIN
|
||||||
@ -40,4 +39,5 @@ fi
|
|||||||
docker run -it --rm --name setup -v $OUTPUT_DIR:/bitwarden bitwarden/setup \
|
docker run -it --rm --name setup -v $OUTPUT_DIR:/bitwarden bitwarden/setup \
|
||||||
dotnet Setup.dll -install 1 -domain $DOMAIN -letsencrypt $LETS_ENCRYPT
|
dotnet Setup.dll -install 1 -domain $DOMAIN -letsencrypt $LETS_ENCRYPT
|
||||||
|
|
||||||
echo -e "\nSetup complete"
|
echo ""
|
||||||
|
echo "Setup complete"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user