search for: proxyrequests

Displaying 20 results from an estimated 52 matches for "proxyrequests".

2015 Oct 01
2
Off Topic - SSL reverse proxy and Mixed Content
...olution should be to get all code changed so that it references //myserver/resource or /resource rather than http://myserver/resource but is there anything I can do with httpd to get this working until these changes are made ? Thanks for any suggestions. Below is my current VirtualHost config ProxyRequests On ProxyPreserveHost On ProxyTimeout 300 <Proxy *> Order allow,deny Allow from all </Proxy> ProxyPass / http://myserver/ ProxyPassReverse / http://myserver/
2006 Sep 26
5
Expert feedback needed
...maintenance file. Let apache load it if it exists RewriteCond %{DOCUMENT_ROOT}/system/maintenance.html -f RewriteRule . /system/maintenance.html [L] # Let apache serve static files RewriteCond %{DOCUMENT_ROOT}%{REQUEST_URI} -f RewriteRule (.*) $1 [L] # Don''t do forward proxying ProxyRequests Off # Enable reverse proxying <Proxy *> Order deny,allow Allow from all </Proxy> # Pass other requests to mongrel instance ProxyPass / http://127.0.0.1:8200/ ProxyPassReverse / http://127.0.0.1:8200/ </VirtualHost> It would be great if some expert could take a loo...
2007 Nov 23
3
Mongrel+Apache 2.2 Proxy
...Let apache load it if it exists RewriteCond %{DOCUMENT_ROOT}/system/maintenance.html -f RewriteRule . /system/maintenance.html [L] # Let apache serve static files RewriteCond %{DOCUMENT_ROOT}%{REQUEST_URI} -f RewriteRule (.*) $1 [L] # Don''t do forward proxying ProxyRequests Off # Enable reverse proxying <Proxy *> Order deny,allow Allow from all </Proxy> # Pass other requests to mongrel instance ProxyPass / http://localhost:4003/ ProxyPassReverse / http://localhost:4003/ <Directory C:/rails> Allow...
2005 Dec 08
3
lighttpd proxy w/ apache2
I''ve tried a bunch of things trying to get ruby/apache2 and php working together. I looked over my earlier post and followed the instructions on ezra''s website to install lighttpd on debian. I''ve gotten really far but I think there is one bit missing: 1. I got apache2 and php working together 2. I got lighttpd working on port 3000 and my rails app launches ok
2008 Aug 20
4
mod_proxy, mongrel, redirect issue
...ualHost> Inside the <VirtualHost *:443> section, I have the following configuration, which seems extremely standard: <Proxy balancer://mongrel> BalancerMember http://localhost:8000 BalancerMember http://localhost:8001 BalancerMember http://localhost:8002 </Proxy> ProxyRequests Off <Proxy *> Order deny,allow Allow from all </Proxy> ProxyPass /stylesheets ! ProxyPass /javascripts ! ProxyPass /images ! ProxyPass / balancer://mongrel/ ProxyPassReverse / balancer://mongrel/ ProxyPreserveHost On When I point my browser to "https://emiliano" I ge...
2015 Oct 06
0
Off Topic - SSL reverse proxy and Mixed Content
..."block" you're describing is client-side. Your browser, by default, may block mixed content. Otherwise, if you have working reverse proxies for http and https, there shouldn't be a problem. > Thanks for any suggestions. Below is my current VirtualHost config > > ProxyRequests On > ProxyPreserveHost On > ProxyTimeout 300 > <Proxy *> > Order allow,deny > Allow from all > </Proxy> That is a severe security problem. In a reverse proxy setup, ProxyRequests should be off, and the Proxy allow/deny section isn...
2008 Jul 10
1
redirecting when behind a firewall
Hi.. I know this isn't a centos/rhel/fedora issue... but i'm hopeful that someone might have an answer!!! thanks VVVVVVVVVV Got a bit of an issue here, that I can't seem to resolve. I have a test domain on a dynamic service (dyndns.org). the test domain is foo.gotdns.com, which i have pointing to my external cable/dsl address. Here's my issue, I would really like to be able to
2009 Sep 17
1
[PATCH server] oVirt server single network installer
...ovirt retry=3 - ProxyPassReverse /ovirt http://AdminNodeFQDN/ovirt -</VirtualHost> - -<VirtualHost AdminNetIpAddress:80> - - ServerAlias AdminNodeFQDN - ServerName AdminNodeFQDN:80 - - ErrorLog /etc/httpd/logs/error_log - TransferLog /etc/httpd/logs/access_log - LogLevel warn - - ProxyRequests Off - -<ProxyMatch ^.*/ovirt/login.*$> - AuthType Kerberos - AuthName "Kerberos Login" - KrbMethodNegotiate on - KrbMethodK5Passwd on - KrbServiceName HTTP - Krb5KeyTab /etc/httpd/conf/ipa.keytab - KrbSaveCredentials on - Require valid-user - ErrorDocument 401 /ovirt/errors...
2006 Jan 05
1
Apache reverse proxy authentication problem on RHEL based distribs only
...================================ <VirtualHost xxx.xxx.xxx.xxx:443> ServerName testproxy.domain.com SSLEngine On SSLCertificateFile /etc/httpd/conf/ssl.crt/server.crt SSLCertificateKeyFile /etc/httpd/conf/ssl.key/server.key RequestHeader set Front-End-Https "On" ProxyRequests Off ProxyPreserveHost On LogLevel debug <Location /exchange> ProxyPass http://yyy.yyy.yyy.yyy/exchange ProxyPassReverse http://yyy.yyy.yyy.yyy/exchange SSLRequireSSL </Location> <Location /exchweb> ProxyPass http://yyy.yyy.yyy.yyy/exchweb...
2006 Dec 15
1
Help w/ Apache Proxying Mongrel
...f 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 FollowSymLinks AllowOverride none Or...
2006 Mar 22
5
Apache - Rails communication.
Please, if this question is not appropriate to this list please direct me elsewhere. If it has been discussed in a previous thread, please direct me there. An initial search of the archives did not appear to show anything. I am new to Rails but not to app servers having 4 years with J2EE. The set up of a Rails app seams strait forward and I understand the MVC model. Initial test code has
2006 Aug 10
7
mongrel stops responding after period of no use
...or] ap_proxy_connect_backend disabling worker for (localhost) [Mon Aug 07 06:29:42 2006] [error] proxy: HTTP: disabled connection for (localhost) [Mon Aug 07 06:29:42 2006] [error] proxy: HTTP: disabled connection for (localhost) each app is setup in it''s own virtual host directive with: ProxyRequests Off ProxyPass / http://localhost:<port>/ ProxyPassReverse / http://localhost:<port>/ ProxyPreserveHost On RewriteEngine On RewriteRule "^(images|stylesheets|javascripts)/?(.*)" "$0" [L] with <port> being the port specific the app. i wind up having to kill eac...
2016 Feb 29
4
Problems with ProxyPass to a local ip (using SSL)
...HER}x \"%r\" %b" LogLevel info SSLEngine on SSLProxyEngine On SSLProtocol -ALL +SSLv3 +TLSv1 SSLCipherSuite ALL:!ADH:!EXPORT56:!EXP:!eNULL:!aNULL:RC4+RSA:+HIGH:+MEDIUM:!LOW:!SSLv2 SSLCertificateFile /etc/httpd/certs/server.crt SSLCertificateKeyFile /etc/httpd/certs/server.key ProxyRequests Off ProxyPreserveHost On ProxyPass / http://192.168.1.5:5100/ ProxyPassReverse / http://192.168.1.5:5100/ RequestHeader set X-Forwarded-Proto "https" RequestHeader set X-Forwarded-Port "444" RewriteEngine On RewriteRule ^/(.*) https://myweb01.local.domain:444/$1 [R,L] &lt...
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.
2007 Jun 29
3
mongrel tuning with httperf - suspicious results
...tp://www.howtoforge.com/load_balancing_apache_mod_proxy_balancer # and here: # http://reductivelabs.com/trac/puppet/wiki/UsingMongrel # <VirtualHost *:80> #[srb] next line added ServerAdmin info at blaho.com ServerName blah.com DocumentRoot /var/www/apps/blah/public #[srb] Turn off ProxyRequests if using ProxyPassReverse # http://httpd.apache.org/docs/2.2/mod/mod_proxy.html#proxypass ProxyRequests Off <Directory "/var/www/apps/blah/public"> Options FollowSymLinks AllowOverride None Order allow,deny Allow from all </Directory> RewriteEngine...
2006 Aug 17
2
mod_proxy and subdomains..
hi, everyone.. i am trying to set up an app like so: www.domain.com -> points to main php application.. subdomain.domain.com -> proxies to www.domain.com:8000 <- this is running on mongrel.. i just cannot figure out how to phrase this in my httpd.conf... does anyone have any ideas? thanks! -- Posted via http://www.ruby-forum.com/.
2016 Feb 29
0
Problems with ProxyPass to a local ip (using SSL)
...gLevel info > SSLEngine on > SSLProxyEngine On > SSLProtocol -ALL +SSLv3 +TLSv1 > SSLCipherSuite ALL:!ADH:!EXPORT56:!EXP:!eNULL:!aNULL:RC4+RSA:+HIGH:+MEDIUM:!LOW:!SSLv2 > SSLCertificateFile /etc/httpd/certs/server.crt > SSLCertificateKeyFile /etc/httpd/certs/server.key > ProxyRequests Off > ProxyPreserveHost On > ProxyPass / http://192.168.1.5:5100/ > ProxyPassReverse / http://192.168.1.5:5100/ > RequestHeader set X-Forwarded-Proto "https" > RequestHeader set X-Forwarded-Port "444" > RewriteEngine On > RewriteRule ^/(.*) https://my...
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 Order allow,deny Allow from a...
2006 Apr 06
3
Apache as proxy for webrick
Hello, We have a webrick server running our nice app, and an apache server being used to serve the rest of the site and act as a proxy for the webrick app. <code> <IfModule mod_proxy.c> ProxyRequests Off <Proxy *> Order deny,allow Allow from all </Proxy> ProxyPass /appname http://server.com:3000 ProxyPassReverse /appname http://server.com:3000 ProxyPreserveHost On </IfModule> </code> If you go to http://server.com/appname everythin...
2006 Mar 03
0
Setting up apache as a proxy without subdomain
...ves can I use for www.somehost.com/one and www.somehost.com/two if they are two different rails setups? I came up with this but that does not work: <VirtualHost somedomain.com:80> ServerAdmin webmaster@username.tld ServerName somedomain.com:80 ProxyRequests Off ProxyPreserveHost On RewriteEngine On RewriteRule ^/one/(.*) http://127.0.0.1:3000/$1 [P,L] ProxyPassReverse / http://127.0.0.1:3000/ </VirtualHost> The wiki does not mention this case either. Bart