Skip to content

Instantly share code, notes, and snippets.

@mikeyakymenko
Created April 30, 2015 16:40
Show Gist options
  • Select an option

  • Save mikeyakymenko/cddc119f3c8f0ede3e7c to your computer and use it in GitHub Desktop.

Select an option

Save mikeyakymenko/cddc119f3c8f0ede3e7c to your computer and use it in GitHub Desktop.
simple nginx
server {
listen 80;
server_name www.macgera.name macgera.name;
access_log /var/log/nginx/macgera.access.log;
error_log /var/log/nginx/macgera.error.log;
error_page 404 /404.html;
location / {
root /home/toor/projects/macgera/production;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment