Skip to content

Instantly share code, notes, and snippets.

@bmakarand2009
Created February 7, 2018 19:55
Show Gist options
  • Save bmakarand2009/b0376118e5b62470d5a9a57330ecbf6d to your computer and use it in GitHub Desktop.
Save bmakarand2009/b0376118e5b62470d5a9a57330ecbf6d to your computer and use it in GitHub Desktop.
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