Created
February 7, 2018 19:55
-
-
Save bmakarand2009/b0376118e5b62470d5a9a57330ecbf6d 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
events { | |
worker_connections 1024; | |
} | |
http { | |
include mime.types; | |
default_type application/octet-stream; | |
sendfile on; | |
keepalive_timeout 65; | |
gzip on; | |
# another virtual host using mix of IP-, name-, and port-based configuration | |
# | |
server { | |
listen 8091; | |
server_name localhost; | |
location / { | |
root /temp/Static-Site-Samples/POHTML; | |
index index.html index.htm; | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment