Skip to content

Commit 293a218

Browse files
authored
Nginx server default.conf
1 parent d76677c commit 293a218

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

nginx/default.conf

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,11 @@ server {
2323
source_charset utf-8;
2424
server_tokens off;
2525
disable_symlinks off;
26+
client_max_body_size 50M;
27+
28+
# From php.ini: pm.max_requests = 5000
29+
keepalive_requests 5000;
2630
keepalive_timeout 60;
27-
client_max_body_size 50M;
2831

2932
add_header X-Frame-Options "SAMEORIGIN";
3033
add_header X-XSS-Protection "1; mode=block";

0 commit comments

Comments
 (0)