This commit is contained in:
mwiegand 2021-07-07 01:16:06 +02:00
parent 4150a3fb4d
commit f3bfde4544
3 changed files with 12 additions and 16 deletions

View file

@ -12,9 +12,9 @@ ignore_user_abort = Off
zend.enable_gc = On zend.enable_gc = On
expose_php = Off expose_php = Off
max_execution_time = 30 max_execution_time = 300
max_input_time = 60 max_input_time = 600
memory_limit = 256M memory_limit = 1G
error_reporting = E_ALL & ~E_DEPRECATED & ~E_STRICT error_reporting = E_ALL & ~E_DEPRECATED & ~E_STRICT
display_startup_errors = Off display_startup_errors = Off
@ -33,14 +33,14 @@ variables_order = "GPCS"
request_order = "GP" request_order = "GP"
register_argc_argv = Off register_argc_argv = Off
auto_globals_jit = On auto_globals_jit = On
post_max_size = ${post_max_size}M post_max_size = ${post_max_size}
default_mimetype = "text/html" default_mimetype = "text/html"
default_charset = "UTF-8" default_charset = "UTF-8"
enable_dl = Off enable_dl = Off
file_uploads = On file_uploads = On
upload_max_filesize = ${post_max_size}M upload_max_filesize = ${post_max_size}
max_file_uploads = 20 max_file_uploads = 2000
allow_url_fopen = On allow_url_fopen = On
allow_url_include = Off allow_url_include = Off

View file

@ -2,7 +2,7 @@ version = node.metadata.get('php/version')
php_ini_context = { php_ini_context = {
'num_cpus': node.metadata.get('vm/cores'), 'num_cpus': node.metadata.get('vm/cores'),
'post_max_size': node.metadata.get('php/post_max_size', 10), 'post_max_size': node.metadata.get('php/post_max_size', '32G'),
} }
files = { files = {

View file

@ -85,19 +85,15 @@
'content': 'nginx/proxy_pass.conf', 'content': 'nginx/proxy_pass.conf',
'context': { 'context': {
'target': 'https://cloud.sublimity.de:443', 'target': 'https://cloud.sublimity.de:443',
} },
} },
}
},
'nginx': {
'vhosts': {
'git.sublimity.de': { 'git.sublimity.de': {
'content': 'nginx/proxy_pass.conf', 'content': 'nginx/proxy_pass.conf',
'context': { 'context': {
'target': 'https://git.sublimity.de:443', 'target': 'https://git.sublimity.de:443',
} },
} },
} },
}, },
'roundcube': { 'roundcube': {
'product_name': 'Sublimity Mail', 'product_name': 'Sublimity Mail',