9851c887ec
PHP (docker/php.ini via conf.d — loaded automatically, no -c flag needed): upload_max_filesize 2M -> 50M post_max_size 8M -> 55M Nginx: client_max_body_size 25M -> 55M Livewire (config/livewire.php published): temporary_file_upload rules max 12MB -> 50MB (max:51200) Laravel validation rules (all in KB): profile photo: 5120 (5MB) -> 51200 (50MB) posts image: 5120 (5MB) -> 51200 (50MB) anuncios image: 5120 (5MB) -> 51200 (50MB) Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
18 lines
334 B
Plaintext
18 lines
334 B
Plaintext
[supervisord]
|
|
nodaemon=true
|
|
|
|
[program:nginx]
|
|
command=nginx -g "daemon off;"
|
|
autostart=true
|
|
autorestart=true
|
|
|
|
[program:laravel]
|
|
command=php /app/artisan serve --host=127.0.0.1 --port=8081
|
|
autostart=true
|
|
autorestart=true
|
|
|
|
[program:reverb]
|
|
command=php /app/artisan reverb:start --host=0.0.0.0 --port=8085
|
|
autostart=true
|
|
autorestart=true
|