Skip to content

Instantly share code, notes, and snippets.

@imontesino
Created June 22, 2023 08:04
Show Gist options
  • Save imontesino/f1c97b729b192329e108669e3f365ef5 to your computer and use it in GitHub Desktop.
Save imontesino/f1c97b729b192329e108669e3f365ef5 to your computer and use it in GitHub Desktop.
Install Barrier KVM with SSL permission
#!/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