https://github.com/tdooner/turgon-config
My media center setup
https://github.com/tdooner/turgon-config
Last synced: 3 months ago
JSON representation
My media center setup
- Host: GitHub
- URL: https://github.com/tdooner/turgon-config
- Owner: tdooner
- Created: 2014-07-12T22:40:43.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2014-07-12T22:41:00.000Z (almost 11 years ago)
- Last Synced: 2025-01-15T00:29:05.927Z (5 months ago)
- Size: 105 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Turgon Configuration
====================================We've got a nice media center setup. Sickbeard, SabNZBd, Couchpotato,
Maraschino, and XBMC all run behind an nginx reverse proxy. This gives us
access to our media from anywhere.Beyond simply installing those programs, here is what we have done to make
everything work together:Generate an htpasswd file
---------------------------
```bash
USERNAME=[your username here]
PASSWORD=[your password here]# as root
SALT=$(echo -n $RANDOM$RANDOM$RANDOM | openssl sha1 -binary)
DIGEST=$(echo -n $PASSWORD$SALT | openssl sha1 -binary)
echo $USERNAME':{SSHA}'$(echo -n $DIGEST$SALT | base64) > /etc/nginx/htpasswd
chown nginx:nginx /etc/nginx/htpasswd
chmod 600 /etc/nginx/htpasswd
```Apply patches to the open source stuff
--------------------------
cd /opt/sickbeard
git am ~/path/to/turgon-config/sickbeard.patchcd /opt/maraschino
git am ~/path/to/turgon-config/maraschino.patchProbably more stuff?
-------------------------
If anyone somehow finds this, let me know how it goes for you.