Last active
August 29, 2015 14:13
-
-
Save n0ts/5ce4e90e1ede58458bb1 to your computer and use it in GitHub Desktop.
tmp nginx.conf
This file contains 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 80; | |
server_name _; | |
#access_log /tmp/access.log main; | |
access_log /var/log/nginx/test-access.log main; | |
location / { | |
#root /tmp/test; | |
root /test/tmp; | |
index index.html index.htm; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment