Skip to content

Instantly share code, notes, and snippets.

@tsabat
Created December 22, 2011 16:33
Show Gist options
  • Save tsabat/1510913 to your computer and use it in GitHub Desktop.
Save tsabat/1510913 to your computer and use it in GitHub Desktop.
nginx static content
server {
listen 8000 default;
server_name localhost;
access_log /var/log/nginx/schemaspy.access.log;
location / {
root /var/www/schemaspy/;
index index.html index.htm;
autoindex on;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment