“从”运行 Linux 命令'RAILS_ROOT/config/environments/production.rb'文件
我正在运行 Ubuntu 10.04 LTS 的远程 VPS 机器上运行 Ruby on Rails 3.0.9,我想知道是否可以“直接”运行一些相关的 Linux 文件夹和文件权限命令,说明 RAILS_ROOT/ 中的命令config/environments/production.rb
文件。如果是这样,如何实现将我的 RAILS_ROOT/public
目录及其子目录设置为 755
权限?
我想这样做,因为我想自动化“设置”过程。
I am running Ruby on Rails 3.0.9 in a remote VPS machine running Ubuntu 10.04 LTS and I would like to know if it is possible to run some related Linux folder and file permission commands "directly" stating those in the RAILS_ROOT/config/environments/production.rb
file. If so, how to accomplish that to set my RAILS_ROOT/public
directory and its sub directories with 755
permissions?
I would like to make that because I would like to automate "setting" processes.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
试试这个
检查:来自 Ruby 的系统调用
try this
check out: System call from Ruby
您可以使用系统命令来运行操作系统命令。确保您不会遇到任何与安全相关的问题。
相反,请查看是否可以在部署代码本身时更改权限。
You can use system command to run the OS commands. Make sure you don't face any security related issues.
Instead see if you can change the permissions while deploying the code itself.