Created
January 13, 2015 05:12
-
-
Save chuprik/505fbd46b7ad1262fe4c to your computer and use it in GitHub Desktop.
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
// file /Users/kotchuprik/Projects/Work/project/nginx.conf | |
server { | |
listen 80; | |
server_name webto.local webto.ru 192.168.0.100 localhost; | |
client_max_body_size 20M; | |
access_log /Users/kotchuprik/Projects/Work/project/access.log; | |
error_log /Users/kotchuprik/Projects/Work/project/error.log; | |
set $root "/Users/kotchuprik/Projects/Work/project/web"; | |
// Далее location смотрит в $root, в $root лежит код | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment