gpt4 book ai didi

ruby-on-rails - Rails Production - 如何设置Secret Key Base?

转载 作者:行者123 更新时间:2023-12-03 01:44:35 27 4
gpt4 key购买 nike

因此,我尝试让我的 Rails 应用程序在生产模式下部署,但出现错误:“生产”环境缺少 secret_tokensecret_key_base,请设置这些config/secrets.yml 中的值

我的 Secrets.yml 文件符合预期:

development:
secret_key_base: xxxxxxx

test:
secret_key_base: xxxxxxx

production:
secret_key_base: <%= ENV["SECRET_KEY_BASE"] %>

但即使经过谷歌和研究,我也不知道如何处理生产 keystore 。大多数信息都假设我有一定的背景知识,但事实是我是一个菜鸟。

任何人都可以向我解释如何设置我的 key 并使其在生产模式下工作吗?

最佳答案

您可以使用以下命令生成 key

$ irb
>> require 'securerandom'
=> true
>> SecureRandom.hex(64)
=> "3fe397575565365108556c3e5549f139e8078a8ec8fd2675a83de96289b30550a266ac04488d7086322efbe573738e7b3ae005b2e3d9afd718aa337fa5e329cf"
>> exit

关于ruby-on-rails - Rails Production - 如何设置Secret Key Base?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29187296/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com