Installed Redmine but only see "Index of /redmine"
Added by Arrone Bueno over 11 years ago
I just followed this guide just fine: http://www.redmine.org/projects/redmine/wiki/InstallRedmineOnDebianStableApacheMysqlPassenger
And when I finally went to my http://localhost.com/redmine I just get an Index of /redmine page.
When I run the following command and go to port 3000, it works just as well.
ruby script/rails server webrick -e production
I am running Debian 7.1, everything is updated and upgraded, mysql database is working correctly and I don't know what else there is to do.
Here is my /etc/apache2/sites-available/redmine file:
<VirtualHost *:80> ServerName xxx DocumentRoot /var/www <Location /var/www/redmine> RailsEnv production RackBaseURI /var/www/redmine Options -MultiViews </Location> </VirtualHost>
Gem Env
RubyGems Environment: - RUBYGEMS VERSION: 1.8.23 - RUBY VERSION: 1.9.3 (2012-04-20 patchlevel 194) [x86_64-linux] - INSTALLATION DIRECTORY: /var/lib/gems/1.9.1 - RUBY EXECUTABLE: /usr/bin/ruby1.9.1 - EXECUTABLE DIRECTORY: /usr/local/bin - RUBYGEMS PLATFORMS: - ruby - x86_64-linux - GEM PATHS: - /var/lib/gems/1.9.1 - /root/.gem/ruby/1.9.1 - GEM CONFIGURATION: - :update_sources => true - :verbose => true - :benchmark => false - :backtrace => false - :bulk_threshold => 1000 - REMOTE SOURCES: - http://rubygems.org/
/opt/redmine/script/about file
#!/usr/bin/env ruby ENV["RAILS_ENV"] ||= "production" require File.expand_path(File.dirname(__FILE__) + "/../config/environment") puts puts Redmine::Info.environment
Thanks for the help, I can supply more information if requested to help out.