Skip to content

Instantly share code, notes, and snippets.

@Helmi
Helmi / ProfitTrailer-ssl.md
Last active April 20, 2019 22:56
ProfitTrailer SSL Encryption Tutorial (Ubuntu 16.04)

Read before you start

Since this little guide has been posted time has pased by. While it still should work you might want to look at a better alternative to get Profit Trailer on SSL and at the same time easily run a bunch of addons.

Check my project Profit Docker on its own Github Repo.


Securing ProfitTrailer behind SSL Reverse Proxy

@spikegrobstein
spikegrobstein / fullsetup.sh
Last active December 19, 2020 22:01
set up all my shit real quick on a fresh box
if [[ ! -e ~/.ssh/id_rsa.pub ]]; then
ssh-keygen -t rsa -b 4096
fi
cat ~/.ssh/id_rsa.pub
sudo apt-get install -y vim-nox tmux silversearcher-ag
git clone git://github.com/spikegrobstein/vim-config.git ~/.vim
cd ~/.vim
@spikegrobstein
spikegrobstein / nginx.conf
Last active July 26, 2025 20:11
nginx config for proxying requests for plex over a hostname-based virtualhost.
upstream plex-upstream {
# change plex-server.example.com:32400 to the hostname:port of your plex server.
# this can be "localhost:32400", for instance, if Plex is running on the same server as nginx.
server plex-server.example.com:32400;
}
server {
listen 80;
# server names for this server.