Re: [users@httpd] Website access without initial www.

2013-09-11 Thread plot.lost
On 11/09/2013 18:46, Curtis Vaughan wrote: Using Apache2.2.22 on a Debian7 server. Hosting multiple websites, but have reduced it to just one for now to try to figure out this problem. So, if I go to: www.vostok1.com the website shows up. HOWEVER, if I go to just: vostok1.com from outside our

[users@httpd] Listen on one port, but act as if on another

2013-06-03 Thread plot.lost
Is there a way to configure apache to listen on one port (for example, 450) but to act as if it is listening on a different port (for example, 443) The reason for asking is for a system which has multiple public IP's that are handled by a router which is natting these to internal systems, and

[users@httpd] Do these log entries show someone trying to hack in?

2013-05-24 Thread plot.lost
I've been getting from error log entries about SNI and hostname are different, and in these cases the SNI used seems to be the correct hostname but with some extra data on the end, for example: Hostname www.example.com\xe0\xb0\xaf\xe2\xbf\xa8.\xe2\xa8\x80 provided via SNI and hostname

Re: [users@httpd] Do these log entries show someone trying to hack in?

2013-05-24 Thread plot.lost
On 24/05/2013 14:55, Jack Mcslay wrote: These appear to be escaped characters from a binary blob, which could be someone trying to inject malicious code, but I really don't think apache has anything that makes it interpret hostnames as C-styled escaped strings. Em 24-05-2013 10:26, plot.lost

[users@httpd] Control of reverse proxy workers

2013-03-25 Thread plot.lost
Hi All, Is there a way to have a script which can be allowed to enabled/disable workers used in a reverse proxy. Similar to what can be done using the balancer-manager page, but without needing to have something that can emulate a web browser to do the job. Thanks.

[users@httpd] mod_proxy timeout problems

2013-02-19 Thread plot.lost
Can anyone give any clues as to what might be causing a timeout problem with mod_proxy being used as a reverse proxy to a local app server. This is using httpd 2.2.23 on ubuntu 10.04 LTS i686 I've (hopefully) eliminated the network itself as a source of the problem by testing this with the

Re: [users@httpd] mod_proxy timeout problems

2013-02-19 Thread plot.lost
On 19/02/2013 14:37, Pavel Mateja wrote: Can anyone give any clues as to what might be causing a timeout problem with mod_proxy being used as a reverse proxy to a local app server. This is using httpd 2.2.23 on ubuntu 10.04 LTS i686 I've (hopefully) eliminated the network itself as a source of

[users@httpd] RedirectMatch using current server name

2012-10-12 Thread plot.lost
Is there a way to do something like the following where the domain part is replaced by whatever has been configured in ServerName RedirectMatch permanent ^/$ http://the.domain.com/path/to/file.html i.e. where 'the.domain.com' is whatever the current ServerName is without having to edit the

Re: [users@httpd] RedirectMatch using current server name

2012-10-12 Thread plot.lost
On 12/10/2012 15:19, Tom Evans wrote: On Fri, Oct 12, 2012 at 2:15 PM, plot.lostplot.l...@gmail.com wrote: Is there a way to do something like the following where the domain part is replaced by whatever has been configured in ServerName RedirectMatch permanent ^/$

[users@httpd] Problems with TLS connections

2012-04-24 Thread plot.lost
Having problems making TLS connections to an instance of apache. The server version is: Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/0.9.8t The ssl config includes: SSLProtocol TLSv1 SSLv3 SSLCipherSuite RC4-SHA:AES256-SHA:ALL:!ADH:!MD5:!EXP:!LOW:!NULL SSLHonorCipherOrder on # See

Re: [users@httpd] Problems with TLS connections

2012-04-24 Thread plot.lost
On 24/04/2012 20:19, Carmel wrote: On Tue, 24 Apr 2012 19:46:40 +0100 plot.lost articulated: Having problems making TLS connections to an instance of apache. The server version is: Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/0.9.8t The ssl config includes: SSLProtocol TLSv1 SSLv3

Re: [users@httpd] Problems with TLS connections

2012-04-24 Thread plot.lost
On 24/04/2012 20:40, plot.lost wrote: On 24/04/2012 20:19, Carmel wrote: On Tue, 24 Apr 2012 19:46:40 +0100 plot.lost articulated: Having problems making TLS connections to an instance of apache. The server version is: Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/0.9.8t The ssl config

Re: [users@httpd] Problems with TLS connections

2012-04-24 Thread plot.lost
On 24/04/2012 21:56, Carmel wrote: On Tue, 24 Apr 2012 20:40:30 +0100 plot.lost articulated: On 24/04/2012 20:19, Carmel wrote: On Tue, 24 Apr 2012 19:46:40 +0100 plot.lost articulated: Having problems making TLS connections to an instance of apache. [snipped] Any clues as to why the TLS

[users@httpd] Re: Proxying SSL on Apache to HTTP on Jetty

2012-01-09 Thread plot.lost
On 08/01/2012 09:41, plot.lost wrote: Apologies in advance for sending this to the apache mailing list, I know it's not really the right place for this question but I though it was maybe worth a try just in case there is someone on this list who has already done this and could maybe help

[users@httpd] Proxying SSL on Apache to HTTP on Jetty

2012-01-08 Thread plot.lost
Apologies in advance for sending this to the apache mailing list, I know it's not really the right place for this question but I though it was maybe worth a try just in case there is someone on this list who has already done this and could maybe help The question is as follows: I'm

Re: [users@httpd] Apache not decoding %2f to / in URL

2011-12-10 Thread plot.lost
On 10/12/2011 12:02, Nico Nieuwoudt wrote: I have to use %2f in URL and not /. Idea is to configure apache in such manner to recognise and encode %2f to /. Thx On Dec 10, 2011 1:36 AM, Eric Covener cove...@gmail.com mailto:cove...@gmail.com wrote: On Fri, Dec 9, 2011 at 6:18 PM, Nico

[users@httpd] Is it possible to have a central balancer-manager for multilpe vhosts?

2011-09-02 Thread plot.lost
Hi, I have several virtual hosts defined on a single apache instance, all of which use a a reverse proxy (proxypass) to talk to different back-end servers. Each proxypass uses a balancer: reference, with the proxy balancer entries having multiple BalancerMember entries. At the moment in

Re: [users@httpd] Is it possible to have a central balancer-manager for multilpe vhosts?

2011-09-02 Thread plot.lost
On 02/09/2011 11:16, Rod Behr wrote: How about a single web page with a number of iframes, each containing the URL you describe? Thanks for the idea, but a page with iframes on would not work for me in this case. I want to remove the balancer manager options from the vhosts and have a single

Re: [users@httpd] Is it possible to have a central balancer-manager for multilpe vhosts?

2011-09-02 Thread plot.lost
On 02/09/2011 11:38, Tom Evans wrote: Define your balancers outside of a vhost, and they will be available to view/modify from all balancer managers. Cheers Tom That worked perfectly, thanks a lot! Can't believe it was that simple. By having the balancers defined outside of the vhosts, and