Redmine
De GioWiki.
Gio (discuter | contributions) |
Gio (discuter | contributions) |
||
| Ligne 118 : | Ligne 118 : | ||
/etc/init.d/apache2 restart | /etc/init.d/apache2 restart | ||
| - | Plus d'informations : http://www.admincafe.re/forums/showthread.php?t=250 - http://www.redmine.org/projects/redmine/wiki/RedmineInstall | + | |
| + | === Passenger === | ||
| + | gem install passenger | ||
| + | apt-get install libcurl4-openssl-dev libaprutil1-dev libapr1-dev apache2-prefork-dev | ||
| + | cd /usr/lib/ruby/gems/1.8/gems/passenger-3.0.2/bin/ | ||
| + | passenger-install-apache2-module | ||
| + | |||
| + | vi /etc/apache2/mods-available/passenger.load | ||
| + | LoadModule passenger_module /usr/lib/ruby/gems/1.8/gems/passenger-3.0.2/ext/apache2/mod_passenger.so | ||
| + | vi /etc/apache2/mods-available/passenger.conf | ||
| + | PassengerRoot /usr/lib/ruby/gems/1.8/gems/passenger-3.0.2 | ||
| + | PassengerRuby /usr/bin/ruby1.8 | ||
| + | |||
| + | vi /etc/apache2/sites-available/redmine | ||
| + | <VirtualHost *:80> | ||
| + | ServerName gioo.hd.free.fr | ||
| + | |||
| + | DocumentRoot /var/www/redmine/1.1/public | ||
| + | |||
| + | LogLevel warn | ||
| + | ErrorLog /var/log/apache2/redmine_error | ||
| + | CustomLog /var/log/apache2/redmine_access combined | ||
| + | |||
| + | <Directory /var/www/redmine/1.1/public> | ||
| + | Options Indexes FollowSymLinks MultiViews | ||
| + | AllowOverride None | ||
| + | Order allow,deny | ||
| + | allow from all | ||
| + | </Directory> | ||
| + | </VirtualHost> | ||
| + | |||
| + | a2ensite redmine | ||
| + | /etc/init.d/apache2 restart | ||
| + | |||
| + | |||
| + | Plus d'informations : http://www.admincafe.re/forums/showthread.php?t=250 - http://www.redmine.org/projects/redmine/wiki/RedmineInstall - https://wiki.ousli.org/index.php/Redmine_in_Ubuntu_Jaunty_9.04 | ||