where to put secure passwords/keys in a rails app?

2020-06-21 15:58发布

I have a few web services that require secure tokens/keys/passwords to be passed in. Where should I define these secure values for my rails app to see? I want the development keys in version control, but don't want the production keys in version control. How should I set this up? I'm new to rails.

3条回答
乱世女痞
2楼-- · 2020-06-21 16:22

apneadiving is right, symlinking the files is a good idea. Another approach is to put the keys in the shell variables, accessible only to the user that runs the app. Then, in your rails app you'll have

login = ENV['SERVICE_LOGIN']
password = ENV['SERVICE_PASSWORD']
查看更多
虎瘦雄心在
3楼-- · 2020-06-21 16:26

You see the question properly.

Put your passwords and keys in some yml file excluded from version control.

Then on your production server, create the very same file and symlink your app to it every time you deploy.

EDIT.

Capistrano is almost made to fits these needs:

查看更多
Ridiculous、
4楼-- · 2020-06-21 16:32

As of Rails 4.1.0, check out secrets.yml.

查看更多
登录 后发表回答