Created
April 12, 2024 13:15
-
-
Save christippett/698fef86584be3c7ab4afd61ae957b07 to your computer and use it in GitHub Desktop.
Configure Plex TLS with Tailscale on macOS
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
#!/bin/sh | |
DOMAIN='______.ts.net' | |
PASSWORD="____" | |
tailscale_cert="$HOME/Library/Containers/io.tailscale.ipn.macos/Data/${DOMAIN}.crt" | |
tailscale_key="$HOME/Library/Containers/io.tailscale.ipn.macos/Data/${DOMAIN}.key" | |
plex_cert="$HOME/Application Support/Plex Media Server/https.p12" | |
# 1. Generate a certificate for your Tailscale domain | |
tailscale cert "$DOMAIN" | |
# 2. Convert the above certificate to PKCS#12 as expected by Plex | |
openssl pkcs12 -export \ | |
-certpbeAES-256-CBC \ | |
-keypbe AES-256-CBC \ | |
-macalg SHA256 \ | |
--inkey "$tailscale_key" \ | |
-certfile "$tailscale_cert" \ | |
-in "$tailscale_cert" \ | |
-out "$plex_cert" \ | |
-passout "pass:$PASSWORD" | |
# 3. Configure Plex | |
defaults write com.plexapp.plexmediaserver -string customCertificateDomain "$DOMAIN" | |
defaults write com.plexapp.plexmediaserver -string customCertificateKey "$PASSWORD" | |
defaults write com.plexapp.plexmediaserver -string customCertificatePath "$plex_cert" | |
defaults write com.plexapp.plexmediaserver -string customConnections "https://${DOMAIN}:32400" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment