Docker-PHP/laravel/nginx.runit

8 lines
189 B
Text
Raw Normal View History

2023-03-02 16:13:59 +00:00
#!/usr/bin/env bash
if [ "${HTTP_ENABLE,,}" = "on" ]; then
echo "[NGINX] Starting Nginx"
/usr/sbin/nginx
else
echo "[NGINX] HTTP_ENABLE not set, Nginx not running"
sleep infinity
fi