We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2f4119f commit 7d1eee4Copy full SHA for 7d1eee4
defaults/main.yml
@@ -22,6 +22,8 @@ nginx_drupal_upload_progress: true
22
nginx_drupal_aio: true
23
nginx_drupal_flv_streaming: true
24
nginx_drupal_mp4_streaming: true
25
+nginx_drupal_http_core:
26
+ client_max_body_size: "10m"
27
nginx_drupal_upstream_servers: ["unix:/var/run/php-fpm.sock", "php-fpm-zwei.sock"]
28
nginx_drupal_upstream_backup_servers: ["unix:/var/run/php-fpm-bkp.sock"]
29
nginx_drupal_sites: none
templates/nginx.j2
@@ -70,7 +70,7 @@ http {
70
reset_timedout_connection on;
71
72
## Body size.
73
- client_max_body_size 10m;
+ client_max_body_size {{nginx_drupal_http_core.client_max_body_size}};
74
75
## TCP options.
76
tcp_nodelay on;
0 commit comments