From a142eb30497dffe8553bf010f90b5f34b1472459 Mon Sep 17 00:00:00 2001 From: William Miceli <1-WilliamMiceli@git.williammiceli.systems> Date: Sat, 30 Mar 2019 21:06:17 -0400 Subject: [PATCH] Changed ordering --- resources/startup.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/resources/startup.sh b/resources/startup.sh index 16d1411..fdc1feb 100644 --- a/resources/startup.sh +++ b/resources/startup.sh @@ -1,7 +1,7 @@ #!/bin/sh -echo "[ INFO ] Starting nginx" -nginx -g "daemon off;" - echo "[ INFO ] Starting PHP-FPM" -service php7.0-fpm start \ No newline at end of file +service php7.0-fpm start + +echo "[ INFO ] Starting nginx" +nginx -g "daemon off;" \ No newline at end of file