diff --git a/init b/init index 718ce5f..cfcc7f8 100755 --- a/init +++ b/init @@ -114,11 +114,15 @@ elif [ "$role" = "queue" -a -e artisan ]; then exec /bin/bash fi - # We only check for non mount points, in case this container has the app inside - mp=$(mp ${php}) - if [ ${mp} -eq 1 ]; then - echo "* Caching configuration..." - su www-data -s /bin/sh -c "(php artisan config:cache && php artisan route:cache && php artisan view:cache)" + if [ -e .lumen ]; then + echo "* Lumen detected..." + else + # We only check for non mount points, in case this container has the app inside + mp=$(mp ${php}) + if [ ${mp} -eq 1 ]; then + echo "* Caching configuration..." + su www-data -s /bin/sh -c "(php artisan config:cache && php artisan route:cache && php artisan view:cache)" + fi fi echo "* Running the queue..." @@ -137,11 +141,15 @@ elif [ "$role" = "scheduler" -a -e artisan ]; then exec /bin/bash fi - # We only check for non mount points, in case this container has the app inside - mp=$(mp ${php}) - if [ ${mp} -eq 1 ]; then - echo "* Caching configuration..." - su www-data -s /bin/sh -c "(php artisan config:cache && php artisan route:cache && php artisan view:cache)" + if [ -e .lumen ]; then + echo "* Lumen detected..." + else + # We only check for non mount points, in case this container has the app inside + mp=$(mp ${php}) + if [ ${mp} -eq 1 ]; then + echo "* Caching configuration..." + su www-data -s /bin/sh -c "(php artisan config:cache && php artisan route:cache && php artisan view:cache)" + fi fi echo "* Running the scheduler..." diff --git a/nginx-app.conf b/nginx-app.conf index 9f86955..dc3deb4 100644 --- a/nginx-app.conf +++ b/nginx-app.conf @@ -2,9 +2,8 @@ server { listen 80 default_server; listen [::]:80 default_server; - access_log none; + access_log off; client_max_body_size 10m; - error_log none; fastcgi_buffers 16 16k; fastcgi_buffer_size 16k; index index.php index.html;