27af72b26e
Pass upload_max_filesize=50M and post_max_size=55M directly with -d flags on every php process in supervisord. This is guaranteed to apply regardless of ini scanning order or Docker layer caching. Also move COPY docker/php.ini before COPY . . so the conf.d file is always placed before the app code is copied, ensuring Docker does not use a stale cached layer that skips the ini file. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
18 lines
472 B
Plaintext
18 lines
472 B
Plaintext
[supervisord]
|
|
nodaemon=true
|
|
|
|
[program:nginx]
|
|
command=nginx -g "daemon off;"
|
|
autostart=true
|
|
autorestart=true
|
|
|
|
[program:laravel]
|
|
command=php -d upload_max_filesize=50M -d post_max_size=55M -d memory_limit=256M /app/artisan serve --host=127.0.0.1 --port=8081
|
|
autostart=true
|
|
autorestart=true
|
|
|
|
[program:reverb]
|
|
command=php -d upload_max_filesize=50M -d post_max_size=55M -d memory_limit=256M /app/artisan reverb:start --host=0.0.0.0 --port=8085
|
|
autostart=true
|
|
autorestart=true
|