search for: proxy_http_module

Displaying 20 results from an estimated 25 matches for "proxy_http_module".

2007 Dec 07
1
Ruby on Rails applications with Mongrel cluster
...tion\Apache2.2\conf, if you installed Apache in its standard path). You just need to uncomment the following lines (remove the #): LoadModule rewrite_module modules/mod_rewrite.so LoadModule proxy_module modules/mod_proxy.so LoadModule proxy_balancer_module modules/mod_proxy_balancer.so LoadModule proxy_http_module modules/mod_proxy_http.so gem install mongrel (pick last version for win32) gem install mongrel_service (pick last version for win32) Now we will create a mongrel cluster of 2 windows services responding at http://127.0.0.1 on ports 3010, 3011 serving a rail application at the path c:\www\ror\mya...
2006 Dec 15
1
Help w/ Apache Proxying Mongrel
....pd f> ) didn''t cover this type of error, and I''ve been stuck fiddling with it for a while. Has anyone else had this problem and resolved it? Any help is much appreciated. My httpd-proxy.conf file is included below: LoadModule proxy_module modules/mod_proxy.so LoadModule proxy_http_module modules/mod_proxy_http.so ProxyRequests Off <Proxy *> Order deny,allow Allow from all </Proxy> #Proxy information for project application Alias /project "e:/rails_apps/project/public" <Directory "e:/rails_apps/project/public"> Options Indexes F...
2007 Nov 07
11
Links go to ''localhost''
I am using Apache2.2 + Mongrel on my machine. Now I am accessing it over LAN. When I enter http://mymachinename/myapp it opens fine but when I click on any link in my rails app, it replaces mymachinename with localhost (http://localhost/myapp/controller/action) and thus I am unable to access it from remote location.
2015 Aug 28
4
apache mysterious 404 error
...shopatmycompanystudios.com/ So taking the advice of that eror I tried enabling all the proxy modules in the apache config: LoadModule proxy_module modules/mod_proxy.so LoadModule proxy_connect_module modules/mod_proxy_connect.so LoadModule proxy_ftp_module modules/mod_proxy_ftp.so LoadModule proxy_http_module modules/mod_proxy_http.so LoadModule proxy_fcgi_module modules/mod_proxy_fcgi.so But those files are still 404ing. Not sure where to take it from here. I'd appreciate any help you can give! Thanks On Fri, Aug 28, 2015 at 10:00 AM, Robert Wolfe <Robert.Wolfe at malco.com> wrote: &gt...
2007 Jul 29
16
Mongrel stops responding after period of inactivity
...filter_module (static) deflate_module (static) log_config_module (static) env_module (static) headers_module (static) setenvif_module (static) proxy_module (static) proxy_connect_module (static) proxy_ftp_module (static) proxy_http_module (static) proxy_ajp_module (static) proxy_balancer_module (static) ssl_module (static) mpm_prefork_module (static) http_module (static) mime_module (static) status_module (static) autoindex_module (static) asis_module (static)...
2007 Jul 29
4
Mongrel stops responding after period of inactivity
...filter_module (static) deflate_module (static) log_config_module (static) env_module (static) headers_module (static) setenvif_module (static) proxy_module (static) proxy_connect_module (static) proxy_ftp_module (static) proxy_http_module (static) proxy_ajp_module (static) proxy_balancer_module (static) ssl_module (static) mpm_prefork_module (static) http_module (static) mime_module (static) status_module (static) autoindex_module (static) asis_module (static)...
2015 Aug 28
0
apache mysterious 404 error
...of that eror I tried enabling all the proxy modules in > the apache config: > > > LoadModule proxy_module modules/mod_proxy.so > > LoadModule proxy_connect_module modules/mod_proxy_connect.so > > LoadModule proxy_ftp_module modules/mod_proxy_ftp.so > > LoadModule proxy_http_module modules/mod_proxy_http.so > > LoadModule proxy_fcgi_module modules/mod_proxy_fcgi.so > > > But those files are still 404ing. Not sure where to take it from here. I'd > appreciate any help you can give! Well if it's a single web server that you want to serve its own fil...
2006 Jun 22
1
Mongrel behin Apache proxy: get "permission denied"
I am trying to run a Typo app behind on mongrel, with Apache proxying on Windows XP. The idea is to have the subdirectory /ebway point to my app. I am using the following code in my http.conf: LoadModule proxy_module modules/mod_proxy.so LoadModule proxy_http_module modules/mod_proxy_http.so ProxyRequests Off <Proxy *> Order deny,allow Allow from all </Proxy> Alias /ebway "c:/mongrel/ebway/public" <Directory "c:/mongrel/ebway/public"> Options Indexes FollowSymLinks AllowOverride none...
2006 Apr 06
1
Apache - mod_proxy
This is really an apache question but if anyone knows offhand it would be nice to know... How do i build a standalone mod_proxy.so module that i can use to load into an apache install that has loadable module support compiled in? thanks
2006 Dec 14
0
Apache2, Mongrel & multiple apps
...AndMongrel.pdf) didn''t cover this type of error, and I''ve been stuck fiddling with it for a while. Has anyone else had this problem and resolved it? Any help is much appreciated. My httpd-proxy.conf file is included below: LoadModule proxy_module modules/mod_proxy.so LoadModule proxy_http_module modules/mod_proxy_http.so ProxyRequests Off <Proxy *> Order deny,allow Allow from all </Proxy> #Proxy information for project application Alias /project "e:/rails_apps/project/public" <Directory "e:/rails_apps/project/public"> Options Indexes FollowSymL...
2007 Aug 29
0
No-protocol-handler-was-valid error
I am running a Mongrel cluster with an Apache front-end. I am loading the following modules in the httpd.conf file: LoadModule proxy_module modules/mod_proxy.so LoadModule proxy_balancer_module modules/mod_proxy_balancer.so LoadModule proxy_ftp_module modules/mod_proxy_ftp.so LoadModule proxy_http_module modules/mod_proxy_http.so LoadModule proxy_connect_module modules/mod_proxy_connect.so Given those conditions, can anyone give me a reason why I would be getting the the following error message when I attempt to access the main/column page: Forbidden You don''t have permission to access /...
2010 Sep 23
0
how to i force apche to handle download requestrunning apach
hii all, Am running apche as frontend to mongrel ,i added these line in Apache''s httpd.conf file LoadModule rewrite_module modules/mod_rewrite.so LoadModule proxy_module modules/mod_proxy.so LoadModule proxy_balancer_module modules/mod_proxy_balancer.so LoadModule proxy_http_module modules/mod_proxy_http.so LoadModule xsendfile_module modules/mod_xsendfile.so XSendFile on XsendFileAllowAbove on <VirtualHost *:80> ServerName src DocumentRoot C:/InstantRails-2.0-win/rails_apps/src/public/ ProxyPass / http://localhost:3000/ ProxyPassReverse / http://localhost:3000...
2010 Sep 23
0
how to do force apache to handle static request
...) on 23.09.2010 14:55 hii all, Am running apche as frontend to mongrel ,i added these line in Apache''s httpd.conf file LoadModule rewrite_module modules/mod_rewrite.so LoadModule proxy_module modules/mod_proxy.so LoadModule proxy_balancer_module modules/mod_proxy_balancer.so LoadModule proxy_http_module modules/mod_proxy_http.so LoadModule xsendfile_module modules/mod_xsendfile.so XSendFile on XsendFileAllowAbove on <VirtualHost *:80> ServerName src DocumentRoot C:/InstantRails-2.0-win/rails_apps/src/public/ ProxyPass / http://localhost:3000/ ProxyPassReverse / http://localhost:3000...
2015 May 07
2
Apache 2.2 itk - 404 not found
...LoadModule substitute_module modules/mod_substitute.so LoadModule rewrite_module modules/mod_rewrite.so LoadModule proxy_module modules/mod_proxy.so LoadModule proxy_balancer_module modules/mod_proxy_balancer.so LoadModule proxy_ftp_module modules/mod_proxy_ftp.so LoadModule proxy_http_module modules/mod_proxy_http.so LoadModule proxy_ajp_module modules/mod_proxy_ajp.so LoadModule proxy_connect_module modules/mod_proxy_connect.so LoadModule cache_module modules/mod_cache.so LoadModule disk_cache_module modules/mod_disk_cache.so LoadModule cgi_module modules/mod_cgi.s...
2015 Aug 28
2
apache mysterious 404 error
...roxy >> modules in the apache config: >> >> >> LoadModule proxy_module modules/mod_proxy.so >> >> LoadModule proxy_connect_module modules/mod_proxy_connect.so >> >> LoadModule proxy_ftp_module modules/mod_proxy_ftp.so >> >> LoadModule proxy_http_module modules/mod_proxy_http.so >> >> LoadModule proxy_fcgi_module modules/mod_proxy_fcgi.so >> >> >> But those files are still 404ing. Not sure where to take it from >> here. I'd appreciate any help you can give! > > Well if it's a single web server...
2015 Aug 28
1
apache mysterious 404 error
...dvice of that eror I tried enabling all the proxy modules > in the apache config: > > > LoadModule proxy_module modules/mod_proxy.so > > LoadModule proxy_connect_module modules/mod_proxy_connect.so > > LoadModule proxy_ftp_module modules/mod_proxy_ftp.so > > LoadModule proxy_http_module modules/mod_proxy_http.so > > LoadModule proxy_fcgi_module modules/mod_proxy_fcgi.so > > > But those files are still 404ing. Not sure where to take it from here. I'd > appreciate any help you can give! > > > Thanks > > On Fri, Aug 28, 2015 at 10:00 AM, Robert Wo...
2015 May 07
3
Apache 2.2 itk - 404 not found
...substitute.so >> LoadModule rewrite_module modules/mod_rewrite.so >> LoadModule proxy_module modules/mod_proxy.so >> LoadModule proxy_balancer_module modules/mod_proxy_balancer.so >> LoadModule proxy_ftp_module modules/mod_proxy_ftp.so >> LoadModule proxy_http_module modules/mod_proxy_http.so >> LoadModule proxy_ajp_module modules/mod_proxy_ajp.so >> LoadModule proxy_connect_module modules/mod_proxy_connect.so >> LoadModule cache_module modules/mod_cache.so >> LoadModule disk_cache_module modules/mod_disk_cache.so >&gt...
2015 Aug 28
0
apache mysterious 404 error
...shopatmycompanystudios.com/ So taking the advice of that eror I tried enabling all the proxy modules in the apache config: LoadModule proxy_module modules/mod_proxy.so LoadModule proxy_connect_module modules/mod_proxy_connect.so LoadModule proxy_ftp_module modules/mod_proxy_ftp.so LoadModule proxy_http_module modules/mod_proxy_http.so LoadModule proxy_fcgi_module modules/mod_proxy_fcgi.so But those files are still 404ing. Not sure where to take it from here. I'd appreciate any help you can give! Thanks On Fri, Aug 28, 2015 at 10:00 AM, Robert Wolfe <Robert.Wolfe at malco.com> wrote: &gt...
2015 May 07
0
Apache 2.2 itk - 404 not found
...itute_module modules/mod_substitute.so > LoadModule rewrite_module modules/mod_rewrite.so > LoadModule proxy_module modules/mod_proxy.so > LoadModule proxy_balancer_module modules/mod_proxy_balancer.so > LoadModule proxy_ftp_module modules/mod_proxy_ftp.so > LoadModule proxy_http_module modules/mod_proxy_http.so > LoadModule proxy_ajp_module modules/mod_proxy_ajp.so > LoadModule proxy_connect_module modules/mod_proxy_connect.so > LoadModule cache_module modules/mod_cache.so > LoadModule disk_cache_module modules/mod_disk_cache.so > LoadModule cgi_modu...
2007 Oct 03
5
403 (Forbidden) with Apache on Mongrel Cluster
Hi, I''ve configured a rails application on my VPS to run on two mongrels. When I run curl on localhost, the starting page comes up fine. That is, mongrel is serving the app perfectly. The problem arises when trying to access the app on my ip through apache. I get a 403 error. Just to test things out, I''ve set generous permissions on the entire rails directory structure