Created
November 17, 2014 02:21
-
-
Save minostro/360bd5a3023d1623822d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
worker_processes 2; | |
events { | |
worker_connections 1024; | |
} | |
http { | |
include mime.types; | |
default_type application/octet-stream; | |
sendfile on; | |
keepalive_timeout 65; | |
gzip on; | |
# this is to include my various virtual hosts | |
include /home/axion/local/etc/nginx/*.conf; | |
#now give the port number to listen on | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment