Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
.DS_Store
nginx/default.conf
nginx/custom/*
php/custom/*
Expand Down
2 changes: 0 additions & 2 deletions nginx/common/fastcgi-cache.conf
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@ fastcgi_cache_path /var/run/nginx-cache levels=1:2 keys_zone=WORDPRESS:50m inact
fastcgi_cache_key "$scheme$request_method$host$request_uri";
fastcgi_cache_use_stale error timeout invalid_header updating http_500 http_503;
fastcgi_cache_valid 200 301 302 404 1h;
fastcgi_buffers 16 16k;
fastcgi_buffer_size 32k;
fastcgi_param SERVER_NAME $http_host;
fastcgi_ignore_headers Cache-Control Expires Set-Cookie;
fastcgi_keep_conn on;
Expand Down
4 changes: 3 additions & 1 deletion nginx/common/limits.conf
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,6 @@ send_timeout 30;
# your php.ini for the changes to apply.
client_max_body_size 100M;

fastcgi_read_timeout 300;
fastcgi_read_timeout 300;
fastcgi_buffer_size 64k;
fastcgi_buffers 16 32k;