mirror of
https://github.com/bitwarden/server.git
synced 2025-05-22 20:11:04 -05:00
setup script updates
This commit is contained in:
parent
7cf54b0e4c
commit
7389017d54
@ -1,20 +1,28 @@
|
||||
param (
|
||||
[string]$outputDir = "c:/bitwarden",
|
||||
[string]$domain = $( Read-Host "Enter your domain name (i.e. bitwarden.company.com)" ),
|
||||
[string]$email = $( Read-Host "Enter your email address" ),
|
||||
[string]$letsencrypt = $( Read-Host "Do you want to use Let's Encrypt to generate a free SSL certificate? (y/n)" )
|
||||
[string]$outputDir = "c:/bitwarden"
|
||||
)
|
||||
|
||||
if(!(Test-Path -Path $outputDir )){
|
||||
New-Item -ItemType directory -Path $outputDir
|
||||
}
|
||||
|
||||
docker --version
|
||||
|
||||
$dockerDir="../docker"
|
||||
[string]$domain = $( Read-Host "Enter the domain name for bitwarden (ex. bitwarden.company.com)" )
|
||||
[string]$letsEncrypt = $( Read-Host "Do you want to use Let's Encrypt to generate a free SSL certificate? (y/n)" )
|
||||
|
||||
$databasePassword=-join ((48..57) + (97..122) | Get-Random -Count 32 | % {[char]$_})
|
||||
|
||||
if($letsencrypt -eq "y") {
|
||||
mkdir -p $outputDir/letsencrypt/live/$domain
|
||||
if($letsEncrypt -eq "y") {
|
||||
[string]$email = $( Read-Host "Enter your email address (Let's Encrypt will send you certificate expiration reminders)" )
|
||||
|
||||
$letsEncryptPath = "${outputDir}/letsencrypt/live/${domain}"
|
||||
if(!(Test-Path -Path $letsEncryptPath )){
|
||||
New-Item -ItemType directory -Path $letsEncryptPath
|
||||
}
|
||||
docker run -it --rm -p 80:80 -v $outputDir/letsencrypt:/etc/letsencrypt/ certbot/certbot certonly --standalone --noninteractive --preferred-challenges http --email $email --agree-tos -d $domain
|
||||
}
|
||||
|
||||
docker run -it --rm -v ${outputDir}:/bitwarden bitwarden/setup dotnet Setup.dll -domain ${domain} -letsencrypt ${letsencrypt} -db_pass ${databasePassword}
|
||||
docker run -it --rm -v ${outputDir}:/bitwarden bitwarden/setup dotnet Setup.dll -domain ${domain} -letsencrypt ${letsEncrypt} -db_pass ${databasePassword}
|
||||
|
||||
echo "Setup complete"
|
||||
|
@ -1,20 +1,25 @@
|
||||
#!/usr/bin/env bash
|
||||
set -e
|
||||
|
||||
echo "Please enter your domain name (i.e. bitwarden.company.com): "
|
||||
read DOMAIN
|
||||
echo -e "\nPlease enter your email address: "
|
||||
read EMAIL
|
||||
echo -e "\nDo you want to use Let's Encrypt to generate a free SSL certificate (y/n)? "
|
||||
read LETS_ENCRYPT
|
||||
|
||||
OUTPUT_DIR=/etc/bitwarden
|
||||
DATABASE_PASSWORD=$(LC_ALL=C tr -dc A-Za-z0-9 </dev/urandom | head -c 32)
|
||||
mkdir -p $OUTPUT_DIR
|
||||
|
||||
docker --version
|
||||
|
||||
#mkdir -p $OUTPUT_DIR/letsencrypt/live/$DOMAIN
|
||||
#docker run -it --rm -p 80:80 -v $OUTPUT_DIR/letsencrypt:/etc/letsencrypt/ certbot/certbot certonly --standalone --noninteractive --preferred-challenges http --email $EMAIL --agree-tos -d $DOMAIN
|
||||
echo "Enter the domain name for bitwarden (ex. bitwarden.company.com): "
|
||||
read DOMAIN
|
||||
echo -e "\nDo you want to use Let's Encrypt to generate a free SSL certificate? (y/n): "
|
||||
read LETS_ENCRYPT
|
||||
|
||||
DATABASE_PASSWORD=$(LC_ALL=C tr -dc A-Za-z0-9 </dev/urandom | head -c 32)
|
||||
|
||||
if [ $LETS_ENCRYPT == 'y' ]
|
||||
then
|
||||
echo -e "\nEnter your email address (Let's Encrypt will send you certificate expiration reminders): "
|
||||
read EMAIL
|
||||
mkdir -p $OUTPUT_DIR/letsencrypt/live/$DOMAIN
|
||||
docker run -it --rm -p 80:80 -v $OUTPUT_DIR/letsencrypt:/etc/letsencrypt/ certbot/certbot certonly --standalone --noninteractive --preferred-challenges http --email $EMAIL --agree-tos -d $DOMAIN
|
||||
fi
|
||||
|
||||
docker run -it --rm -v $OUTPUT_DIR:/bitwarden bitwarden/setup dotnet Setup.dll -domain $DOMAIN -letsencrypt $LETS_ENCRYPT -db_pass $DATABASE_PASSWORD
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user