Merge pull request #658 from brdns/debian-dev

move client_max_body_size from default.conf to nginx.conf
This commit is contained in:
David Bomba
2024-11-27 19:19:14 +11:00
committed by GitHub
2 changed files with 4 additions and 3 deletions

View File

@@ -8,8 +8,6 @@ server {
server_tokens off;
client_max_body_size 100M;
root /var/www/html/public;
index index.php;

View File

@@ -22,5 +22,8 @@ http {
keepalive_timeout 65;
gzip on;
client_max_body_size 100M;
client_body_buffer_size 100M;
include /etc/nginx/conf.d/*.conf;
}
}