本文介绍了Symfony可以更改'secret'参数来破坏什么吗?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
在 parameters.yml 文件中,有一个名为 secret 的参数,默认为ThisTokenIsNotSoSecretChangeIt
,但应将其更改为其他名称.
In the parameters.yml file there is a parameter named secret which defaults to ThisTokenIsNotSoSecretChangeIt
but it should be changed to something else.
如果在生产中更改此参数的值会发生什么?它能破坏任何东西吗?
What happens if the value of this parameter is changed in production? Can it break anything?
推荐答案
它不会破坏任何内容.根据官方文档的建议,甚至不时更改值 secret 的参数甚至被认为是一种好习惯:
It does not break anything. Changing the value secret parameter from time to time is even considered a good practice, suggested by the official documentation:
http://symfony.com/doc/current/reference/configuration/framework.html#secret
唯一需要注意的是:
这篇关于Symfony可以更改'secret'参数来破坏什么吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!