Compare commits

...

4 Commits

Author SHA1 Message Date
David Bomba
da8ac78563 Merge pull request #851 from benbrummer/memory_limit
Update memory limit for master
2026-01-07 20:38:05 +11:00
benbrummer
6ebe60522b Update PHP configuration for memory limit
Signed-off-by: benbrummer <info@benjamin-brummer.de>
2026-01-03 11:08:14 +01:00
David Bomba
ff3b7263f5 Merge pull request #825 from turbo124/master
Force cache:clear on first boot
2025-10-28 06:28:11 +11:00
David Bomba
ba896fcc03 Force cache:clear on first boot 2025-10-28 06:26:49 +11:00
2 changed files with 4 additions and 1 deletions

View File

@@ -1,6 +1,7 @@
#!/bin/sh #!/bin/sh
php artisan db:seed --force php artisan db:seed --force
php artisan cache:clear
# Build up array of arguments... # Build up array of arguments...
if [[ ! -z "${IN_USER_EMAIL}" ]]; then if [[ ! -z "${IN_USER_EMAIL}" ]]; then

View File

@@ -2,7 +2,7 @@
; memory storage allocation. ("1" means validate once per second, but only ; memory storage allocation. ("1" means validate once per second, but only
; once per request. "0" means always validate) ; once per request. "0" means always validate)
;opcache.revalidate_freq=2 ;opcache.revalidate_freq=2
opcache.revalidate_freq=60 opcache.revalidate_freq = 60
# http://symfony.com/doc/current/performance.html # http://symfony.com/doc/current/performance.html
; Duration of time, in seconds for which to cache realpath information for a given ; Duration of time, in seconds for which to cache realpath information for a given
@@ -15,3 +15,5 @@ realpath_cache_ttl = 600
; Maximum allowed size for uploaded files. ; Maximum allowed size for uploaded files.
; http://php.net/upload-max-filesize ; http://php.net/upload-max-filesize
upload_max_filesize = 8M upload_max_filesize = 8M
memory_limit = 512M