Skip to content

Instantly share code, notes, and snippets.

@murilobr
Created June 7, 2012 20:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save murilobr/2891352 to your computer and use it in GitHub Desktop.
Save murilobr/2891352 to your computer and use it in GitHub Desktop.
NGINX.config simple example
events {
worker_connections 5;
}
http{
server {
listen 8090;
server_name localhost;
access_log /my_project_folder/access_nginx.log;
error_log /my_project_folder/error_nginx.log;
location / {
root /my_project_folder;
index index.html index.htm;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment