Skip to content

Commit

Permalink
Merge pull request #293 from getlago/fix-rsa-init
Browse files Browse the repository at this point in the history
fix(self-hosted): Fix intialization of RSA private key
  • Loading branch information
vincent-pochet authored Jan 16, 2025
2 parents 53acd3a + 7b71b64 commit c88637b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion guide/self-hosted/docker.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ git clone https://github.com/getlago/lago.git
cd lago

# Set up environment configuration
echo "LAGO_RSA_PRIVATE_KEY=\"`openssl genrsa 2048 | base64`\"" >> .env
echo "LAGO_RSA_PRIVATE_KEY=\"`openssl genrsa 2048 | base64 | tr -d '\n'`\"" >> .env

source .env

# Start the api
Expand Down

0 comments on commit c88637b

Please sign in to comment.