Created
September 10, 2011 00:07
-
-
Save tsabat/1207662 to your computer and use it in GitHub Desktop.
static config for nginx
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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