V
Vio Dds
Hello,
I have a problem whith my ruby configuration.
I explain :
I have lampp installed in my computer and I use Joomla AND Redmine
My /etc/hosts is like this:
127.0.0.1 localhost localhost.localdomain
85.31.216.211 www mywebsite
Joomla is configured on 'mywebsite' and I try to put redmine on
'mywebsite'/redmine. That's why I wrote the httpd.conf like :
LoadModule rewrite_module modules/mod_rewrite.so
########################################
# RUBY SETUP
########################################
<VirtualHost *:80>
ServerName mywebsite/redmine
DocumentRoot "/opt/lampp/htdocs/redmine/public"
ProxyRequests Off
ProxyRequests On
ProxyVia On
<Proxy *>
Order deny,allow
Allow from all
</Proxy>
ProxyPass / http://localhost:3000/
ProxyPassReverse / http://localhost:3000/
<Location />
Order allow,deny
Allow from all
</Location>
<Directory "/opt/lampp/htdocs/redmine/public/">
Options ExecCGI FollowSymLinks
AllowOverride all
Allow from all
Order allow,deny
AddHandler cgi-script .cgi
#AddHandler fastcgi-script .fcgi
</Directory>
</VirtualHost>
########################################
# RUBY SETUP
########################################
But it doesn't work. Joomla is ok on 'mywebsite' but the url
'mywebsite'/redmine isn't found.
Please, does anyone know what I missed ?
I have a problem whith my ruby configuration.
I explain :
I have lampp installed in my computer and I use Joomla AND Redmine
My /etc/hosts is like this:
127.0.0.1 localhost localhost.localdomain
85.31.216.211 www mywebsite
Joomla is configured on 'mywebsite' and I try to put redmine on
'mywebsite'/redmine. That's why I wrote the httpd.conf like :
LoadModule rewrite_module modules/mod_rewrite.so
########################################
# RUBY SETUP
########################################
<VirtualHost *:80>
ServerName mywebsite/redmine
DocumentRoot "/opt/lampp/htdocs/redmine/public"
ProxyRequests Off
ProxyRequests On
ProxyVia On
<Proxy *>
Order deny,allow
Allow from all
</Proxy>
ProxyPass / http://localhost:3000/
ProxyPassReverse / http://localhost:3000/
<Location />
Order allow,deny
Allow from all
</Location>
<Directory "/opt/lampp/htdocs/redmine/public/">
Options ExecCGI FollowSymLinks
AllowOverride all
Allow from all
Order allow,deny
AddHandler cgi-script .cgi
#AddHandler fastcgi-script .fcgi
</Directory>
</VirtualHost>
########################################
# RUBY SETUP
########################################
But it doesn't work. Joomla is ok on 'mywebsite' but the url
'mywebsite'/redmine isn't found.
Please, does anyone know what I missed ?