HowTo Install Redmine in a sub-URI » History » Version 16
Evgeniy Dushistov, 2016-06-26 12:50
1 | 15 | Simon Deziel | {{toc}} |
---|---|---|---|
2 | 15 | Simon Deziel | |
3 | 3 | Jean-Philippe Lang | h1. HowTo Install Redmine in a sub-URI |
4 | 1 | Jean-Baptiste Barth | |
5 | 2 | Jean-Baptiste Barth | This page explains how to run Redmine in a subdirectory of your site, for instance @http://www.mysite.com/redmine/@ ; in such a case, you can feel lost because the classic Redmine install does not work directly, and the links to css or javascript files seem to be broken. In this page, we assume you want to run Redmine under "/redmine/" subdirectory of your site. |
6 | 1 | Jean-Baptiste Barth | |
7 | 16 | Evgeniy Dushistov | h2. Working variant (Sun Jun 26 13:48:50 MSK 2016) |
8 | 16 | Evgeniy Dushistov | |
9 | 16 | Evgeniy Dushistov | Change the following lines at the bottom of your config/environment.rb |
10 | 16 | Evgeniy Dushistov | |
11 | 16 | Evgeniy Dushistov | <pre><code lang="ruby"> |
12 | 16 | Evgeniy Dushistov | # Initialize the Rails application |
13 | 16 | Evgeniy Dushistov | Rails.application.initialize! |
14 | 16 | Evgeniy Dushistov | </code></pre> |
15 | 16 | Evgeniy Dushistov | |
16 | 16 | Evgeniy Dushistov | to |
17 | 16 | Evgeniy Dushistov | |
18 | 16 | Evgeniy Dushistov | <pre><code lang="ruby"> |
19 | 16 | Evgeniy Dushistov | RedmineApp::Application.routes.default_scope = "/redmine" |
20 | 16 | Evgeniy Dushistov | # Initialize the Rails application |
21 | 16 | Evgeniy Dushistov | Rails.application.initialize! |
22 | 16 | Evgeniy Dushistov | </code></pre> |
23 | 16 | Evgeniy Dushistov | |
24 | 16 | Evgeniy Dushistov | |
25 | 6 | Luca Pireddu | h2. Using Redmine::Utils (preferred solution) |
26 | 6 | Luca Pireddu | |
27 | 6 | Luca Pireddu | Add the following line at the bottom of your config/environment.rb |
28 | 6 | Luca Pireddu | |
29 | 6 | Luca Pireddu | <pre> |
30 | 6 | Luca Pireddu | Redmine::Utils::relative_url_root = "/redmine" |
31 | 6 | Luca Pireddu | </pre> |
32 | 6 | Luca Pireddu | |
33 | 6 | Luca Pireddu | Then restart your application. |
34 | 6 | Luca Pireddu | |
35 | 6 | Luca Pireddu | h2. Using Rails features |
36 | 1 | Jean-Baptiste Barth | |
37 | 1 | Jean-Baptiste Barth | Add the following line at the end of your config/environment.rb : |
38 | 1 | Jean-Baptiste Barth | <pre> |
39 | 1 | Jean-Baptiste Barth | ActionController::AbstractRequest.relative_url_root = "/redmine" |
40 | 4 | Michael Vance | </pre>Rails will then prefix all links with "/redmine". It can be considered as the simplest, cleanest and most flexible solution. Then restart your application. In more recent versions of Rails the class hierarchy has changed slightly and you will need to use |
41 | 4 | Michael Vance | <pre> |
42 | 4 | Michael Vance | ActionController::Base.relative_url_root = "/redmine" |
43 | 5 | Michael Vance | </pre>for the class name. |
44 | 1 | Jean-Baptiste Barth | |
45 | 1 | Jean-Baptiste Barth | h2. Using Mongrel features |
46 | 1 | Jean-Baptiste Barth | |
47 | 2 | Jean-Baptiste Barth | If you run Redmine under Mongrel server, you can alternatively use the "--prefix" option of Mongrel : |
48 | 1 | Jean-Baptiste Barth | <pre> |
49 | 2 | Jean-Baptiste Barth | mongrel_rails start --prefix=/redmine |
50 | 7 | Tiemo Vorschuetz | </pre> |
51 | 7 | Tiemo Vorschuetz | _*Mongrel_rails service "--prefix" directive does NOT work with Rails 2.3.x* |
52 | 7 | Tiemo Vorschuetz | To fix this issue create a file config/initializers/patch_for_mongrel.rb [name of file can be anything]:_ |
53 | 7 | Tiemo Vorschuetz | <pre> |
54 | 7 | Tiemo Vorschuetz | # Fix for mongrel which still doesn't know about Rails 2.2's changes, |
55 | 7 | Tiemo Vorschuetz | # We provide a backwards compatible wrapper around the new |
56 | 7 | Tiemo Vorschuetz | # ActionController::base.relative_url_root, |
57 | 7 | Tiemo Vorschuetz | # so it can still be called off of the actually non-existing |
58 | 7 | Tiemo Vorschuetz | # AbstractRequest class. |
59 | 7 | Tiemo Vorschuetz | |
60 | 7 | Tiemo Vorschuetz | module ActionController |
61 | 7 | Tiemo Vorschuetz | class AbstractRequest < ActionController::Request |
62 | 7 | Tiemo Vorschuetz | def self.relative_url_root=(path) |
63 | 7 | Tiemo Vorschuetz | ActionController::Base.relative_url_root=(path) |
64 | 7 | Tiemo Vorschuetz | end |
65 | 7 | Tiemo Vorschuetz | def self.relative_url_root |
66 | 7 | Tiemo Vorschuetz | ActionController::Base.relative_url_root |
67 | 7 | Tiemo Vorschuetz | end |
68 | 7 | Tiemo Vorschuetz | end |
69 | 7 | Tiemo Vorschuetz | end |
70 | 7 | Tiemo Vorschuetz | # |
71 | 7 | Tiemo Vorschuetz | # Thanks to http://www.ruby-forum.com/topic/190287 |
72 | 7 | Tiemo Vorschuetz | </pre> |
73 | 7 | Tiemo Vorschuetz | |
74 | 7 | Tiemo Vorschuetz | You may not run Mongrel on port 80 : if you have an Apache server on the same host, and you run Mongrel on port 8000, you can use the following Apache config to redirect (with Apache's mod_proxy enabled) : |
75 | 1 | Jean-Baptiste Barth | <pre> |
76 | 1 | Jean-Baptiste Barth | ProxyPass /redmine http://localhost:8000/redmine |
77 | 1 | Jean-Baptiste Barth | ProxyPassReverse /redmine http://localhost:8000/redmine |
78 | 1 | Jean-Baptiste Barth | </pre> |
79 | 1 | Jean-Baptiste Barth | |
80 | 1 | Jean-Baptiste Barth | h2. Using Passenger (aka mod_rails) features |
81 | 1 | Jean-Baptiste Barth | |
82 | 9 | Zack s | If you run Redmine under Apache web server with Phusion Passenger module, you can follow "this guide":http://www.modrails.com/documentation/Users%20guide%20Apache.html#deploying_rails_to_sub_uri ; please note it won't work correctly on some versions of Passenger or some Linux distributions. |
83 | 1 | Jean-Baptiste Barth | |
84 | 12 | shaun williams | h2. Using Passenger+Nginx features |
85 | 12 | shaun williams | |
86 | 12 | shaun williams | See "official guide":http://modrails.com/documentation/Users%20guide%20Nginx.html#deploying_rails_to_sub_uri (This is the only solution that worked for me - 30 Oct 2012) |
87 | 12 | shaun williams | |
88 | 13 | Yehuda Katz | h2. Using Unicorn+Nginx |
89 | 13 | Yehuda Katz | |
90 | 13 | Yehuda Katz | nginx config: |
91 | 13 | Yehuda Katz | <pre> |
92 | 13 | Yehuda Katz | location /redmine { |
93 | 13 | Yehuda Katz | alias <PATH_TO>/redmine/public; |
94 | 13 | Yehuda Katz | |
95 | 13 | Yehuda Katz | try_files $uri/index.html $uri.html $uri @app; |
96 | 13 | Yehuda Katz | } |
97 | 13 | Yehuda Katz | </pre> |
98 | 13 | Yehuda Katz | |
99 | 13 | Yehuda Katz | config/routes.rb |
100 | 13 | Yehuda Katz | <pre> |
101 | 13 | Yehuda Katz | |
102 | 13 | Yehuda Katz | Redmine::Utils::relative_url_root = "/redmine" |
103 | 13 | Yehuda Katz | |
104 | 13 | Yehuda Katz | RedmineApp::Application.routes.draw do |
105 | 14 | Yehuda Katz | scope Redmine::Utils::relative_url_root do |
106 | 13 | Yehuda Katz | root :to => 'welcome#index', :as => 'home' |
107 | 13 | Yehuda Katz | ..... |
108 | 13 | Yehuda Katz | end |
109 | 13 | Yehuda Katz | end |
110 | 13 | Yehuda Katz | </pre> |
111 | 13 | Yehuda Katz | |
112 | 1 | Jean-Baptiste Barth | h2. With a reverse proxy |
113 | 1 | Jean-Baptiste Barth | |
114 | 1 | Jean-Baptiste Barth | If you have an Apache webserver in front of it (with mod_proxy enabled), or an Apache reverse proxy on another machine, you can run Redmine on a specific port and use this kind of config so it appears to be running in a subdirectory : |
115 | 1 | Jean-Baptiste Barth | <pre> |
116 | 1 | Jean-Baptiste Barth | ProxyPass /redmine http://real-redmine-server.localdomain:3000/ |
117 | 1 | Jean-Baptiste Barth | ProxyPassReverse /redmine http://real-redmine-server.localdomain:3000/ |
118 | 2 | Jean-Baptiste Barth | </pre>See Apache official documentation to adapt it. |
119 | 1 | Jean-Baptiste Barth | |
120 | 1 | Jean-Baptiste Barth | |
121 | 2 | Jean-Baptiste Barth | h2. Old versions of Redmine and Rails |
122 | 1 | Jean-Baptiste Barth | |
123 | 2 | Jean-Baptiste Barth | If you run a very old version of Redmine (don't know exactly which ones), maybe your version of Rails' ActionController does not support the "relative_url_root" mentionned above. Then you can look at "this page":https://www.riscosopen.org/wiki/documentation/pages/Running+Rails+applications+from+subdirectories/versions/16 to reproduce the same behaviour, but it is NOT a very good idea in most cases, you should consider upgrading Redmine. |
124 | 2 | Jean-Baptiste Barth | |
125 | 1 | Jean-Baptiste Barth | h2. References |
126 | 1 | Jean-Baptiste Barth | |
127 | 8 | Zack s | If this page did not answered your problems, you can see #2508 or "this thread":http://www.redmine.org/boards/2/topics/2244. |
128 | 10 | Zack s | |
129 | 10 | Zack s | Windows : Configuring Ruby On Rails App in a subdirectory under Apache - http://stackoverflow.com/a/470973/663172 |
130 | 11 | Zack s | |
131 | 11 | Zack s | Configuring ruby on rails Action Controller - http://edgeguides.rubyonrails.org/configuring.html#configuring-action-controller |