访问 redmine

访问 redmine

我刚刚在我的 ubuntu 服务器上安装了 redmine。

当我尝试从此地址 localhost/redmine 访问它时,找不到它

但是当我执行此脚本/服务器-e production -p 3000然后在此处访问redmine localhost:3000时它可以正常工作..

任何想法..

我的服务器上也安装了 php

这是我的 redmine 的 vhost

<VirtualHost *:80>
        ServerName redmine.localhost
        ServerAlias redmine
        DocumentRoot /var/www/redmine/public/

        ServerAdmin [email protected]
        LogLevel warn
        ErrorLog /var/log/apache2/redmine_error
        CustomLog /var/log/apache2/redmine_access combined

        <Directory /var/www/redmine/public>
                Options FollowSymLinks
                AllowOverride None
                Order allow,deny
                allow from all
        </Directory>
</VirtualHost>

答案1

你有Phusion 乘客已经安装?这是使用 Apache 开始提供 Rails 应用程序的最简单方法。安装速度很快,您不需要修改虚拟主机配置。

或者,您可以配置 Apache 以使用 Mongrels 集群进行负载平衡。此路线需要更多配置。

相关内容