Created
June 22, 2023 08:04
-
-
Save imontesino/f1c97b729b192329e108669e3f365ef5 to your computer and use it in GitHub Desktop.
Install Barrier KVM with SSL permission
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
sudo apt-get install barrier | |
BARRIER_SSL_PATH=~/.local/share/barrier/SSL/ | |
mkdir -p "${BARRIER_SSL_PATH}" | |
openssl req -x509 -nodes -days 365 -subj /CN=Barrier -newkey rsa:4096 -keyout ${BARRIER_SSL_PATH}/Barrier.pem -out ${BARRIER_SSL_PATH}/Barrier.pem |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment