🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
8 lines
92 B
Bash
8 lines
92 B
Bash
#!/bin/bash
|
|
|
|
# Start PHP-FPM
|
|
php-fpm -D
|
|
|
|
# Start Nginx in foreground
|
|
nginx -g 'daemon off;'
|