Project

General

Profile

apache install not configured correctly?

Added by Richard Langly about 14 years ago

I'm trying to follow ... http://www.redmine.org/wiki/redmine/HowTo_configure_Apache_to_run_Redmine ... and I've done the basic steps.

On Gentoo, I have this in my /etc/apache2/vhosts.d/00_default_vhost.conf.

Am I missing anything? If I go to 192.168.1.11:80, I get the standard "Not Found". My DocumentRoot is correct to where my Redmine install is.

Any ideas?

<VirtualHost 192.168.1.11:80>
    ServerName 192.168.1.11
    ServerAdmin webmaster@domain
    # localhost
    Include /etc/apache2/vhosts.d/default_vhost.include
    DocumentRoot /home/rrl/Tools/redmine-0.8/public
    # DocumentRoot /home/rrl/Tools/redmine-0.8
    ErrorLog logs/redmine_error_log

    <IfModule mpm_peruser_module>
        ServerEnvironment apache apache
    </IfModule>

    <Directory "/home/rrl/Tools/redmine-0.8/public">
        Options Indexes ExecCGI FollowSymLinks
        Order allow,deny
        Allow from all
        AllowOverride all
    </Directory>                                              
</VirtualHost>
$ RAILS_ENV=production ~/Tools/redmine-0.8/script/about
About your application's environment
Ruby version              1.8.7 (x86_64-linux)
RubyGems version          1.3.5
Rails version             2.1.2
Active Record version     2.1.2
Action Pack version       2.1.2
Active Resource version   2.1.2
Action Mailer version     2.1.2
Active Support version    2.1.2
Application root          /home/rrl/Tools/redmine-0.8
Environment               production
Database adapter          mysql
Database schema version   101

When I start apache, I get the following....

 $ sudo /etc/init.d/apache2 start
 * Starting apache2 ...
apache2: Could not reliably determine the server's fully qualified domain name, using 192.168.1.11 for ServerName
[Sat Mar 27 12:06:03 2010] [warn] NameVirtualHost *:80 has no VirtualHos  [ ok ]