本文介绍了使特定文件夹在Google App Engine的Laravel Coaster CMS中可写的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

当前,我在使用带有laravel自定义cms过山车cms的google app引擎.如何使以下文件夹可写?

Currently I am using google app engine with laravel custom cms coaster cms. How can I make the following folders writable?

尝试了所有常规命令,chmod被授予权限,请检查上图

Tried all normal commands, chmod given permission check the above image

推荐答案

虽然App Engine在VM上运行,但这并不意味着您应该依赖于更改其权限.请记住,App Engine是托管VM,这意味着即使您将文件夹在实例上写为可写,如果App Engine扩大规模或必须销毁您修改的实例,您仍需要在新实例上进行更改(您不应该这样做).

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).

我建议您将Compute Engine与托管实例组一起使用,以解决此问题,因为这比混入为您的应用程序产生的每个实例更为实用.

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.

这篇关于使特定文件夹在Google App Engine的Laravel Coaster CMS中可写的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-31 05:08