Skip to content

Instantly share code, notes, and snippets.

@dead23angel
Created March 4, 2014 08:22
Show Gist options
  • Save dead23angel/9342339 to your computer and use it in GitHub Desktop.
Save dead23angel/9342339 to your computer and use it in GitHub Desktop.
server {
listen 80;
server_name coderweb.ru;
access_log /var/www/coderweb.ru/logs/access.log;
error_log /var/www/coderweb.ru/logs/error.log;
location / {
uwsgi_pass unix:///var/tmp/coderweb.ru.sock;
include uwsgi_params;
}
location /media/ {
alias /var/www/coderweb.ru/www/media/;
}
location /static/ {
alias /var/www/coderweb.ru/www/static/;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment