Skip to content

Instantly share code, notes, and snippets.

@hvelarde
Created November 23, 2016 17:13
Show Gist options
  • Save hvelarde/fdfd72e1257999f9ebffbe0e05f0fbf8 to your computer and use it in GitHub Desktop.
Save hvelarde/fdfd72e1257999f9ebffbe0e05f0fbf8 to your computer and use it in GitHub Desktop.
nginx configuration for Plone
# Configuration file for nginx
#
# This file must me symlinked to /etc/nginx/nginx.conf
user www-data;
worker_processes auto;
pid /run/nginx.pid;
events {
worker_connections 4096;
}
http {
# hide nginx version information
server_tokens off;
# basic settings
sendfile on;
tcp_nopush on;
tcp_nodelay on;
keepalive_timeout 30s;
types_hash_max_size 2048;
# server_names_hash_bucket_size 64;
# server_name_in_redirect off;
include /etc/nginx/mime.types;
default_type application/octet-stream;
##
# Logging Settings
##
access_log /var/log/nginx/access.log;
error_log /var/log/nginx/error.log;
# gzip settings
gzip on;
gzip_disable "msie6";
gzip_vary on;
gzip_proxied any;
gzip_comp_level 5;
gzip_min_length 256;
gzip_types
application/atom+xml
application/javascript
application/json
application/ld+json
application/manifest+json
application/rss+xml
application/vnd.geo+json
application/vnd.ms-fontobject
application/x-font-ttf
application/x-javascript
application/x-web-app-manifest+json
application/xhtml+xml
application/xml
font/opentype
image/bmp
image/svg+xml
image/x-icon
text/cache-manifest
text/css
text/plain
text/vcard
text/vnd.rim.location.xloc
text/vtt
text/x-component
text/x-cross-domain-policy;
# caching time for different response codes
proxy_cache_path /var/lib/nginx/cache levels=1:2 keys_zone=backcache:8m max_size=50m;
proxy_cache_key "$request_uri$is_args$args";
proxy_cache_min_uses 2;
proxy_cache_use_stale error timeout http_500 http_502 http_503 http_504;
proxy_cache_valid 301 302 1h;
proxy_cache_valid 404 1d;
##
# Virtual Host Configs
##
include /etc/nginx/conf.d/*.conf;
include /etc/nginx/sites-enabled/*;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment