I'm using the following httpd-vhosts.conf file to host several sites on my MacBook.
Apache Configuration
The first two virtual sites (v3.local,ss.local) are giving back the following error messages in the Apache error log:
[Thu Aug 30 15:12:04 2012] [error] (61)Connection refused: proxy: HTTP: attempt to connect to [fe80::1]:3002 (localhost) failed
[Thu Aug 30 15:12:04 2012] [error] ap_proxy_co
I'm using apache to proxy my tomcat instance, and I would like apache to listen on both ports 80 and 8080. I have the given configuration.
I am trying to forward a port from 80 to 8080 (default to tomcat).
I've got iis redirecting http traffic to a tomcat server using isapi_redirect.
When I browse to this URL: http://localhost:8080/foo/%5B-%5D server (nc -l 8080) receives it as-is:
GET /foo/%5B-%5D HTTP/1.1
However when I proxy this application via nginx:
location /foo {
proxy_pass http://localhost:8080/foo;
}
The same request routed through nginx is forwarded with path decoded:
GET /foo/[-] HTTP/1.1
Decoded square brackets in the GET path are causing the e
I have an linux server running with a JBoss Instance with apache2.
Apache2 will use AJP connection to reverse proxy to JBoss.
I found these messages in the apache error.log:
[error] (70007)The timeout specified has expired: ajp_ilink_receive() can't receive header
[error] ajp_read_header: ajp_ilink_receive failed
[error] (120006)APR does not understand this error code: proxy: read response faile
I am attempting to use nginx to create a server endpoint that can act as a dynamic proxy for an arbitrary endpoint.
The contract is:
http://{proxy-host}/p/{target-protocol}/{target-host}/{target-port}/{target-path}
For example, this url:
http://my.website.com/p/https/some.remote.api.com/8080/items
Should be proxied to:
https://some.remote.api.com:8080/items
However, I am getting a 404 No
I need to connect myself (Mac OSX) through SSH on a distant server (Unix also) which has no internet access.
I would like to browse the internet on the server (updates and other stuffes), so I've made a reverse HTTP tunnel.
I've installed SquidMan on my Mac OSX laptop, as proxy server.
This is my config:
HTTP port: 8080
visible host name: localhost
This is the way I connect myself through SSH
I am using ProxyPass and ProxyPassReverse directives for redirecting all requests from Tomcat's application (from port 8080) to subdomain (port 80). In addition I have default php website on port 80.