From 200f4d5e9bb2507c09defdb8386701754f92a662 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Sat, 24 Jan 2015 09:11:08 +0000 Subject: [PATCH] Don't make app/storage writeable to the world --- composer.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/composer.json b/composer.json index 51fdc20f..3d888eb1 100644 --- a/composer.json +++ b/composer.json @@ -65,13 +65,13 @@ "scripts": { "post-install-cmd": [ "php artisan optimize", - "chmod -R 777 app/storage", + "chmod -R 755 app/storage", "php artisan cachet:one-click-deploy" ], "post-update-cmd": [ "php artisan clear-compiled", "php artisan optimize", - "chmod -R 777 app/storage" + "chmod -R 755 app/storage" ], "post-create-project-cmd": [ "php artisan key:generate"