Laravel shared storage #2685
Answered
by
jasperf
jasperf
asked this question in
Help needed
-
We made a change and removed // Make sure uploads & published , tls, logs aren't overwritten by deploying
set('shared_dirs', [
'storage',
'public/uploads',
'public/published',
]); Then Laravel complained it could not find the cache path. So does that mean if I use // Make sure uploads & published , tls, logs aren't overwritten by deploying
set('shared_dirs', [
'public/uploads',
'public/published',
'storage/framework/cache',
'storage/framework/sessions',
'storage/framework/views',
'storage/logs',
'storage/tls',
'storage/app/public',
'storage/app/modules',
]); that Deployer actually creates these directories if they are not there yet? Some are there already, but I just wanted to move |
Beta Was this translation helpful? Give feedback.
Answered by
jasperf
Oct 8, 2021
Replies: 1 comment
-
Yes, it does add the directories if they are not present . |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
jasperf
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Yes, it does add the directories if they are not present .