first commit

This commit is contained in:
sbb45
2026-06-02 20:35:48 +05:00
parent d6441abdd2
commit b81ab27553
11 changed files with 649 additions and 380 deletions
+9
View File
@@ -0,0 +1,9 @@
#!/bin/sh
set -e
php artisan migrate --force
php artisan config:cache
php artisan route:cache
php artisan view:cache
exec "$@"
+17
View File
@@ -0,0 +1,17 @@
[PHP]
display_errors = Off
log_errors = On
error_log = /proc/self/fd/2
max_execution_time = 60
max_input_time = 60
memory_limit = 256M
post_max_size = 64M
upload_max_filesize = 64M
[opcache]
opcache.enable = 1
opcache.memory_consumption = 128
opcache.interned_strings_buffer = 8
opcache.max_accelerated_files = 10000
opcache.validate_timestamps = 0
opcache.save_comments = 1