Hi all,
I am still trying to run Redmine at root URI. For this I created a virtual host. It works anyhow, but there is shown only raw text without any styles. I found error message in production.log of Redmine; maybe this is causing the problem:
Started GET "/" for 127.0.0.1 at Tue Aug 21 16:45:29 +0200 2012
Processing by WelcomeController#index as HTML
Rendered welcome/index.html.erb within layouts/base (500.0ms)
Completed 200 OK in 923ms (Views: 625.0ms | ActiveRecord: 40.0ms)
Started GET "/redmine/javascripts/prototype.js?1340050970" for 127.0.0.1 at Tue Aug 21 16:45:30 >+0200 2012
ActionController::RoutingError (No route matches [GET] "/redmine/javascripts/prototype.js"):
my redmine.conf is looking like this:
<virtualhost *:80=""> ServerName redmine
ErrorLog "logs/redmine-error.log"
CustomLog "logs/redmine-access.log" common
DocumentRoot "C:/Program Files/BitNami Redmine Stack/apps/redmine/htdocs/public/"
<directory "c:="" program="" files="" bitnami="" redmine="" stack="" apps="" redmine="" htdocs="" public="" "="">
Options Indexes ExecCGI FollowSymLinks
Order allow,deny
Allow from all
AllowOverride all
</directory>
# This passes through remote_user to mongrel
RewriteEngine On
# Redirect non-static requests to cluster
RewriteCond %{DOCUMENT_ROOT}/%{REQUEST_FILENAME} !-f
RewriteRule ^/(.*)$ balancer://redminecluster%{REQUEST_URI} [P,QSA,L]
</virtualhost>
ProxyPass / balancer://redminecluster
ProxyPassReverse / balancer://redminecluster
<proxy <a="" href="balancer://redminecluster">balancer://redminecluster>
BalancerMember http://127.0.0.1:3001
BalancerMember http://127.0.0.1:3002
</proxy>
Further I deleted " —prefix /redmine" in serviceinstall.bat and performed with UNINSTALL and INSTALL.
My system environment: windows7 64 bit, Bitnami NativeStack Installation 2.03
I read already a lot of other posts and tried a lot of variants. But problem is, that other posts are either handling linux installations or other apache/windows versions. I am not able to find a solution, which is fully working within my installation. Is anybody out there, who has an idea, what could be wrong? Thanks a lot! Richard