diff --git a/docker/nginx.conf b/docker/nginx.conf index 24bda6032..a8015353f 100644 --- a/docker/nginx.conf +++ b/docker/nginx.conf @@ -3,12 +3,17 @@ events { } http { - keepalive_timeout 65; - limit_req_zone $binary_remote_addr zone=standardlimit:10m rate=3r/s; - limit_req_zone $binary_remote_addr zone=legacylimit:10m rate=2r/s; + keepalive_timeout 65; + gzip on; + gzip_types text/plain application/xml text/css application/javascript; + worker_processes auto; + + limit_req_zone $binary_remote_addr zone=standardlimit:10m rate=20r/s; + limit_req_zone $binary_remote_addr zone=legacylimit:10m rate=20r/s; server { listen 80; + listen 443 ssl http2; server_name ${TARGET_HOST}; location / {