Don't make app/storage writeable to the world

This commit is contained in:
James Brooks 2015-01-24 09:11:08 +00:00
parent 6796a893fb
commit 200f4d5e9b

View File

@ -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"