Skip to content

Instantly share code, notes, and snippets.

View jeffhorton's full-sized avatar

Jeff Horton jeffhorton

View GitHub Profile
@jeffhorton
jeffhorton / nginx.conf
Created July 31, 2018 03:11 — forked from hwdsl2/nginx.conf
Actual nginx.conf for Lin's Tech Blog (http://blog.ls20.com - click for tutorial). Published with Ghost, Nginx and ModSecurity
user nginx;
# Set this to match the number of CPU cores
worker_processes 2;
events { worker_connections 1024; }
http {
server_names_hash_bucket_size 64;
types_hash_max_size 2048;
server_tokens off;
include mime.types;
default_type application/octet-stream;