Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 6 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save TechupBusiness/1e8f6f1a1ea984d6a3d8c0e648607106 to your computer and use it in GitHub Desktop.
Save TechupBusiness/1e8f6f1a1ea984d6a3d8c0e648607106 to your computer and use it in GitHub Desktop.
Generator to create basic authentication string for traefik (docker-compose.yml and .env)
#!/bin/bash
SUDO=''
if (( $EUID != 0 )); then SUDO='sudo'; fi
echo "Basic auth for traefik >= v1.7"
read -p "User: " USER
read -p "Password: " PW
# Checks if htpasswd is available or install it otherwise
which htpasswd >/dev/null || ($SUDO apt-get update && $SUDO apt-get install apache2-utils)
# Generate strings
echo "------- Your string for .env --------"
string=$(htpasswd -nbB $USER $PW)
echo $string
echo "------- Your string for docker-compose.yml --------"
# Escape string
echo "$string" | sed -e 's/\$/\$\$/g'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment