Skip to content

Instantly share code, notes, and snippets.

@chuprik
Created January 13, 2015 05:12
Show Gist options
  • Save chuprik/505fbd46b7ad1262fe4c to your computer and use it in GitHub Desktop.
Save chuprik/505fbd46b7ad1262fe4c to your computer and use it in GitHub Desktop.
// 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