Files
minicrm/start-server.sh
phuongtc 96e1ce4f40
Some checks failed
Tests / PHP 8.3 (push) Has been cancelled
Tests / PHP 8.4 (push) Has been cancelled
Tests / PHP 8.5 (push) Has been cancelled
hoàn thiện upload và global search
2026-05-06 04:10:14 +00:00

7 lines
195 B
Bash
Executable File

#!/bin/bash
# Start PHP server with increased upload limits
php -d upload_max_filesize=50M \
-d post_max_size=55M \
-d memory_limit=256M \
artisan serve --host=0.0.0.0 --port=8000