Project

General

Profile

HowTo configure Apache to run Redmine » History » Version 6

Anonymous, 2009-07-12 20:45
merely added a little note about about adding FastCGI how to HOWTO to this page

1 1 Cyber Sprocket
h1. HowTo configure Apache to run Redmine
2
3 2 Cyber Sprocket
{{toc}}
4 1 Cyber Sprocket
5 2 Cyber Sprocket
These notes assume you already have Redmine running via the webrick server and are looking to get Redmine running via your existing Apache installation.   Most of the commands assume you are in the root installation directory of redmine, so be sure to change directory there before starting.
6 1 Cyber Sprocket
7
h2. For CentOS 5
8
9
h3. Assumptions
10
11
* OS is CentOS 5
12
* Web server is Apache 2
13
** mod_cgi is enabled
14
** name based virtual servers are being used
15 2 Cyber Sprocket
** the web server runs under the user apache, group apache
16 1 Cyber Sprocket
17 4 Cyber Sprocket
h3. Myths
18
19
* You do not need to run mod_fcgid
20
* You do not need to run mod_fastcgi
21
* You 
22 5 Brad Mace
bq. This sections needs work. I can't tell if these are the myths or the corrections to the myths.
23 6 Anonymous
_(note: if someone were so generous to post working, known good, HOWTO steps here for enabling FastCGI, that would be highly valuable to the entire community. It is reported that www.redmine.org itself runs FastCGI, so it is obviously a valid, worthwhile, stable, performing way to run this great great web app'.)_
24 4 Cyber Sprocket
25 1 Cyber Sprocket
h3. Basic Steps
26
27
* Install Redmine per the installation instructions and get it running with webrick.
28
29
* Kill the webrick session
30
31
* Copy the public/dispatch.cgi.example to public/dispatch.cgi
32
33
* Edit public/dispatch.cgi to fix the shell script invocation to read:
34
  @#!/usr/local/bin/ruby@
35
36
* Make sure public/dispatch.cgi has execute permissions via:
37
  @# chmod 755 public/dispatch.cgi@
38
39
* Update the config/environment.rb file to force the rails environment to production, simply uncomment this line at the start of the file:
40
  @ENV['RAILS_ENV'] ||= 'production'@
41
42 3 Cyber Sprocket
* Add your virtual host entry to the apache configuration file (/etc/httpd/conf/httpd.conf).  We installed redmine into the /live/redmine folder on our server. _Note: be sure to point your DocumentRoot to the public sub-folder!_
43
44 1 Cyber Sprocket
<pre>
45
    <VirtualHost *:80>
46
        ServerName redmine.<YOUR-DOMAIN>.com
47
        ServerAdmin webmaster@<YOUR-DOMAIN>.com
48
        DocumentRoot /live/redmine/public/
49
        ErrorLog logs/redmine_error_log
50
51
        <Directory "/live/redmine/public/">
52
                Options Indexes ExecCGI FollowSymLinks
53
                Order allow,deny
54
                Allow from all
55
                AllowOverride all
56
        </Directory>
57
    </VirtualHost>
58
</pre>
59
60
* Make sure your files, log, tmp, and vendor directories are all accessible (read/write) by user apache, group apache. We did that via a change of ownership:
61
  @# chown -R apache:apache files log tmp vendor@
62
63
64 2 Cyber Sprocket
h3. Error Messages and Resolutions
65 1 Cyber Sprocket
66 2 Cyber Sprocket
  * @Rails requires RubyGems >= 0.9.4. Please install RubyGems@
67
    Look for rogue versions of ruby binaries.  We had an older version in /usr/bin/ruby as well as /usr/local/bin/ruby.
68 1 Cyber Sprocket
69 2 Cyber Sprocket
  * @Premature script headers@
70
    This is the generic "got something before the Content-Type: header in a CGI script" error from Apache.  Run dispatch.cgi (see below) and see what comes out BEFORE the Content-Type: directive.
71
72
h2. Helpful Commands
73
74
 * @# which ruby@
75
   tells you which ruby binary is being run when the fully-qualified-filename has not been specified.
76
77
 * @# find / -name ruby@
78
   searches your entire system for any file named ruby, warning: can take a while on large filesystems.
79
 
80
 * @# ruby -v@
81
   tell you what version of ruby you are running by default
82
83
 * @#public/dispatch.cgi@
84
   runs the dispatch CGI script.   It should spit out HTML that start with @Content-Type: text/html; charset=utf-8@, if ANYTHING precedes the Content-Type text you will get a "premature script headers" error in the Apache log files.