Skip to content

Instantly share code, notes, and snippets.

@sjoness
Created October 18, 2011 11:26
Show Gist options
  • Save sjoness/1295204 to your computer and use it in GitHub Desktop.
Save sjoness/1295204 to your computer and use it in GitHub Desktop.
nginx sites-enabled example conf
server {
listen 80;
server_name qntm.net;
location / {
root /srv/http/qntm;
index index.html index.htm;
}
error_page 404 /404/index.html;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment