Tagged Questions
0
votes
0answers
24 views
Rails root url with mod_proxy
Rails versions: 3.2
I have an existed PHP site and I would like to add new features in it with Rails.
The final gole is to migrate the entire site to rails, therefore I choose to use mod_proxy to ...
1
vote
0answers
50 views
link_url not responding to config.action_controller.relative_url_root
I'm running my Rails app on port 3000, with mod_proxy forwarding requests to /rails, to http://localhost:3000.
I'm attempting to make link_to take the subdirectory into account. (For example, ...
1
vote
0answers
235 views
mod_proxy returns blank page for rails 3.1 app with passenger
this is driving me nuts and I'm trying to get this running since days so maybe I'm a little bit focused on the wrong topic but here are the results of my investigations:
I have an apache2+passenger ...
1
vote
1answer
496 views
Deploy a rails application in a sub-directory with Passenger
I have a website : http://foo.com
I would like to add a rails application in : http://foo.com/subdir
So I use a Apache Proxy to do it.
In the server with the Rails application, I have Passenger and ...
1
vote
1answer
311 views
How to run Rails 3.0 on jRuby behind mod_ajp Apache 2 proxy
I wonder if anyone got a jRuby Rails 3.0 app to work behind an Apache 2 proxy, through an AJP mount. I'd like the following configuration to work, without uncommenting the last statement.
...
6
votes
1answer
1k views
Can Apache BalancerMember be configured to use unix domain sockets?
I am using the Apache Proxy balancer directive to hook up a set of thin servers (for Rails).
Like so:
<Proxy balancer://thinservers>
BalancerMember http://127.0.0.1:5000 route=thin0
...
0
votes
0answers
41 views
Running rails app, want to serve /blog from another server
I'd like to server /blog from http://blog.domain.com. I'm using apache 2, rails 2.3, and passenger on ubuntu. I've tried this in the virtual host:
<Proxy *>
Order deny,allow
Allow from all
...