Skip to content

Instantly share code, notes, and snippets.

@ys3669
Created August 3, 2017 16:02
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 ys3669/20dbd5d9dd6897fe7dd7e2249c706307 to your computer and use it in GitHub Desktop.
Save ys3669/20dbd5d9dd6897fe7dd7e2249c706307 to your computer and use it in GitHub Desktop.
nginx.conf-Sakura
user nginx;
worker_processes auto;
pid /run/nginx.pid;
events {
worker_connections 768;
# multi_accept on;
}
http {
# Basic Settings
sendfile on;
tcp_nopush on;
tcp_nodelay on;
keepalive_timeout 65;
types_hash_max_size 2048;
server_tokens off;
charset UTF-8;
server_name_hash_bucket_size 64;
server_name_in_redirect off;
include /etc/nginx/mime.types;
default_type application/octet-stream;
# SSL Settings
ssl_protocols TLSv1 TLSv1.1 TLSv1.2; # Dropping SSLv3, ref: POODLE
ssl_prefer_server_ciphers on;
# Logging Settings
access_log /var/log/nginx/access.log;
error_log /var/log/nginx/error.log;
# Gzip Settings
gzip on;
gzip_disable "msie6";
include /etc/nginx/conf.d/*.conf;
include /etc/nginx/sites-enabled/*;
}
include /etc/nginx/rtmp.conf;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment