Reputation: 1
i have get problem with REDMINE.. Could you please help me? I try describe everything i did
I made this install
sudo apt-get install apache2 libapache2-mod-passenger
After configure file /etc/apache2/mods-available/passenger.conf
<IfModule mod_passenger.c>
PassengerRoot /usr/lib/ruby/vendor_ruby/phusion_passenger/locations.ini
PassengerDefaultRuby /usr/bin/ruby
PassengerDefaultUser www-data
</IfModule>
Also i create symbolic link for REDMINE
sudo ln -s /usr/share/redmine/public /var/www/html/redmine
Passenger is enabled
sudo a2enmod passenger
This is my configuration of sites-available/000-default.conf
ServerAdmin webmaster@localhost
DocumentRoot /var/www/html/redmine
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
<Directory /var/www/html/redmine>
RailsBaseURI /redmine
PassengerAppRoot /usr/share/redmine/
</Directory>
When i start my web-browser i got this error : ERROR from web-browser
I also add information from /var/log/apache2/error.log
I have got also sql installed and configured.
Upvotes: 0
Views: 137
Reputation: 641
According to the logs you paste, you have an issue when connecting to the servers of phusion passenger that provide a security check. That is probably caused by a firewall that's filtering outgoing connections.
You can get more info about this feature on their site here.
In case you want to disable the security check there's the parameter to change the default info
PassengerDisableSecurityUpdateCheck on
Upvotes: 0