Files
nginx-egg/start.sh

14 lines
274 B
Bash
Raw Normal View History

2025-10-11 14:20:03 +02:00
#!/bin/ash
echo "Starting PHP-FPM..."
2025-10-11 14:47:21 +02:00
/usr/sbin/php-fpm84 --fpm-config /home/container/php-fpm/php-fpm.conf --daemonize
2025-10-11 14:20:03 +02:00
2025-10-11 14:56:29 +02:00
echo "Starting Redis"
redis-server &
echo "Starting Nginx"
/usr/sbin/nginx -c /home/container/nginx/nginx.conf &
2025-10-11 15:18:31 +02:00
cd /home/container/webroot
/bin/bash