Skip to content

Instantly share code, notes, and snippets.

@maxime
Created February 6, 2009 15:07
Show Gist options
  • Save maxime/59433 to your computer and use it in GitHub Desktop.
Save maxime/59433 to your computer and use it in GitHub Desktop.
user www-data www-data;
worker_processes 1;
error_log logs/error.log;
pid logs/nginx.pid;
events {
worker_connections 1024;
}
http {
include mime.types;
access_log logs/access.log main;
server {
listen 80;
server_name 0.0.0.0;
root /usr/local/nginx/html;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment