Skip to content

Instantly share code, notes, and snippets.

View geekdenz's full-sized avatar
🙂
Zen

Tim-Hinnerk Heuer geekdenz

🙂
Zen
View GitHub Profile
@spikegrobstein
spikegrobstein / nginx.conf
Last active September 22, 2023 04:19
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.
@jamesjohnson
jamesjohnson / README.md
Created February 19, 2012 22:07 — forked from dlo/README.md
Ubuntu 11.10, PostGIS 1.5 Setup Script

Installing PostGIS

Ubuntu 11.10

sudo apt-get install postgresql-9.1-postgis
sudo su postgres
bash <(curl -s https://raw.github.com/gist/18660599/create_template.sh)

Ubuntu 11.04