mirror of
https://github.com/tteck/Proxmox.git
synced 2025-02-15 06:09:15 +01:00
alpine-vaultwarden-argon2 (#1314)
Use Argon2 to securely hash passwords and protect them against various types of attacks.
This commit is contained in:
parent
3621dd0c35
commit
76479a7733
2 changed files with 14 additions and 3 deletions
|
@ -20,6 +20,7 @@ $STD apk add openssl
|
|||
$STD apk add openssh
|
||||
$STD apk add nano
|
||||
$STD apk add mc
|
||||
$STD apk add argon2
|
||||
msg_ok "Installed Dependencies"
|
||||
|
||||
msg_info "Installing Alpine-Vaultwarden"
|
||||
|
@ -28,7 +29,7 @@ cat <<EOF >/etc/conf.d/vaultwarden
|
|||
export DATA_FOLDER=/var/lib/vaultwarden
|
||||
export WEB_VAULT_FOLDER=/var/lib/vaultwarden/web-vault
|
||||
export WEB_VAULT_ENABLED=true
|
||||
export ADMIN_TOKEN=$(openssl rand -base64 48)
|
||||
export ADMIN_TOKEN=''
|
||||
export ROCKET_ADDRESS=0.0.0.0
|
||||
EOF
|
||||
$STD rc-service vaultwarden start
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue