红宝石+ Passenger - Redmine 部署问题

发布于 2025-01-08 05:38:44 字数 592 浏览 1 评论 0原文

我正在尝试在我的网络服务器上部署Redmine。 我选择使用乘客来部署 ruby​​ 应用程序。

我已经使用 rake 的演示应用程序进行了测试,但是当我将 VitualHost 指向 redmine 公共文件夹时,我收到此错误:

Directory index forbidden by Options directive: /var/www/redmine/public/

有人可以帮忙吗?

虚拟主机:

<VirtualHost *:80>
      ServerName redmine.myserver.com
      DocumentRoot /var/www/redmine/public
      ErrorLog /var/www/redmine/redmine-error-log
      <Directory var/www/redmine/public>
         AllowOverride all
         Options -MultiViews
      </Directory>
</VirtualHost>

I am trying to deploy Redmine on my web server.
I have chose to use passenger to deploy the ruby app.

I have tested with the rake's demo app, but when I pointed my VitualHost to the red mine public folder I got this error:

Directory index forbidden by Options directive: /var/www/redmine/public/

Can anyone help?

Virtual host:

<VirtualHost *:80>
      ServerName redmine.myserver.com
      DocumentRoot /var/www/redmine/public
      ErrorLog /var/www/redmine/redmine-error-log
      <Directory var/www/redmine/public>
         AllowOverride all
         Options -MultiViews
      </Directory>
</VirtualHost>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

七月上 2025-01-15 05:38:44

恕我直言,乘客在您的示例中缺少一些配置。以下是我在生产中的内容:

<Directory /var/www/redmine>
    RailsBaseURI /redmine
    PassengerResolveSymlinksInDocumentRoot on
</Directory>

/var/www/redmine 被创建为符号链接:

sudo ln -s /usr/share/redmine/public /var/www/redmine

您还可以确保在您的 redmine 文件夹(根文件夹)上正确设置了权限。

IMHO Passenger is missing some configuration in your example. Here is what I've in production :

<Directory /var/www/redmine>
    RailsBaseURI /redmine
    PassengerResolveSymlinksInDocumentRoot on
</Directory>

Where /var/www/redmine was created as a symbolic link :

sudo ln -s /usr/share/redmine/public /var/www/redmine

You might also ensure that the rights are properly set on your redmine folder (the root one).

拥抱没勇气 2025-01-15 05:38:44

我已经解决了这个问题。
该问题是由 SElinux 引起的。
我必须启用宽容模式。

setenforce 0

然后我配置了Redmine应用程序并再次为文件夹设置了正确的权限。
最后我禁用了宽容模式:

setenforce 1

I have solved this issue.
The problem was caused by SElinux.
I had to enable the permissive mode.

setenforce 0

Then I have configured the Redmine app and set the correct permissions to the folders again.
In the end I have disabled the permissive mode:

setenforce 1
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文