Revert "Fix lint issues and improve test suite resilience"
This reverts commit 90d44bd3bc.
This commit is contained in:
+5
-5
@@ -1,10 +1,10 @@
|
||||
{{- $upload_max_size := "256M" -}}
|
||||
{{- if ne (getenv "UPLOAD_MAX_SIZE") "" }}{{ $upload_max_size = getenv "UPLOAD_MAX_SIZE" }}{{ end -}}
|
||||
{{- $upload_max_time := "30" -}}
|
||||
{{- if ne (getenv "UPLOAD_MAX_TIME") "" }}{{ $upload_max_time = getenv "UPLOAD_MAX_TIME" }}{{ end -}}
|
||||
{{ $upload_max_size := "256M" }}
|
||||
{{ if ne (env "UPLOAD_MAX_SIZE") "" }} {{ $upload_max_size = env "UPLOAD_MAX_SIZE" }} {{ end }}
|
||||
{{ $upload_max_time := "30" }}
|
||||
{{ if ne (env "UPLOAD_MAX_TIME") "" }} {{ $upload_max_time = env "UPLOAD_MAX_TIME" }} {{ end }}
|
||||
|
||||
file_uploads = On
|
||||
upload_max_filesize = {{ $upload_max_size }}
|
||||
upload_max_filesize = {{ $upload_max_size }}
|
||||
post_max_size = {{ $upload_max_size }}
|
||||
memory_limit = {{ $upload_max_size }}
|
||||
max_execution_time = {{ $upload_max_time }}
|
||||
|
||||
Reference in New Issue
Block a user