Created
December 22, 2011 16:33
-
-
Save tsabat/1510913 to your computer and use it in GitHub Desktop.
nginx static content
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