Currently I am using google app engine with laravel custom cms coaster cms. How can I make the following folders writable?
Tried all normal commands, chmod given permission check the above image
3 Answers
Answers 1
While App Engine runs on VM's, this does not mean that you should rely on changing their permissions. Remember that App Engine is a managed VM, this means that even if you make the folders writable on an instance, if App Engine scales up or has to destroy the instance you modified, you would need to make the changes on the new instances (which you shouldn't be doing).
I would recommend you to use Compute Engine with a managed instance group in order to solve this issue as this would be more practical than to mingle with every instance that spawns for you app.
Answers 2
I am not sure what you need to do to make Coaster CMS folders writable, but you might be able to do whatever you need to do in a dockerfile for your App Engine Flex VMs.
If that's not sufficient, then you can use startup scripts to setup/configure all your GCE VMs at startup.
Answers 3
If the process that the web server runs on is saurabh2836, then you need to add the write permission for the directories listed:
chmod -R u+x public/coaster public/themes public/uploads


0 comments:
Post a Comment