Re: [users@httpd] reverse proxy and path

2020-01-14 Thread Colin 't Hart
Looks like you have a transposition typo in your rewrite rule. /Colin On Tue, 14 Jan 2020 at 11:42, Vieri Di Paola wrote: > Hi, > > I can successfully access a backend server through directives like these: > > ProxyPass / http://192.168.250.1:8080/ > ProxyPassReverse /

Re: [users@httpd] Optimal way to trigger logging if certain URL is accessed

2019-10-23 Thread Colin 't Hart
Are logging directives allowed inside a Location or LocationMatch directive? /Colin Sent from my iPhone > On 23 Oct 2019, at 18:41, Martin T wrote: > > Hi, > > I have a following Apache virtual host configuration where custom > call_Google_MP_API script receives the IP address and HTTP

Re: [users@httpd] Has anybody used a SQL database to store static pages without using PHP?

2019-09-04 Thread Colin 't Hart
I was going to reply the same: you can, but you probably shouldn't. Databases aren't built for speed. They are built for robustness: Atomicity, Consistency, Isolation, and Durability (ACID). If that's what you need, then you should use a database. Otherwise just use the filesystem. It's designed

[users@httpd] mod_proxy_scgi 2.4.29-1ubuntu4.8 errors with scgi 1.15

2019-08-20 Thread Colin 't Hart
Hi, Apologies if this isn't the correct forum to discuss this error as it appears to be Python and SCGI related, but I'm hoping someone here has some pointers. Testing our Python application stack on Ubuntu 18.04 with latest versions of SCGI (1.15) and the bundled version of Apache

Re: [users@httpd] Where is source for Windows? (was Re: Binary windows 2.4.x distribution)

2013-11-14 Thread Colin 't Hart
Binaries for windows can be gotten from the aforementioned Apache Lounge, www.apachelounge.com On 14 November 2013 14:03, STF laps...@gmail.com wrote: Ah OK. Well, even without the Force of Jedi, I can already foresee a difficult path before me if I'm to compile my own binary for Windows ...

Re: [users@httpd] Where is source for Windows? (was Re: Binary windows 2.4.x distribution)

2013-11-14 Thread Colin 't Hart
it's clean and doesn't contain suspicious or unwanted code. On 14 November 2013 14:10, Colin 't Hart co...@sharpheart.org wrote: Binaries for windows can be gotten from the aforementioned Apache Lounge, www.apachelounge.com

Re: [users@httpd] Where is source for Windows? (was Re: Binary windows 2.4.x distribution)

2013-11-14 Thread Colin 't Hart
Eric, Why not remove the win32 binaries altogether and just mention that win32 binaries are available at Apache Lounge? This would mirror eg the Linux kernel which is only supplied as a binary in a distribution. Cheers, Colin On 14 November 2013 15:21, Eric Covener cove...@gmail.com wrote:

Re: [users@httpd] protecting a list of specific urls

2013-10-25 Thread Colin 't Hart
Hi Edward, You do know that Location supports regular expressions? You should be able to collapse all 3 into a single Location something like the following: Location ~ ^/(site1/abc|site2/tux|site3/zzz) AuthType Basic AuthName Administrators AuthBasicProvider ldap-centos

Re: [users@httpd] Trying to run expect from web page

2013-10-09 Thread Colin 't Hart
This all sounds very insecure to me, especially if you're going to share details on its implementation online. I'd use VPN, failing that SSH. Cheers, Colin On Thursday, 10 October 2013, Yehuda Katz wrote: You might have better luck with this on a PHP forum/list. You would also need to

Re: [users@httpd] New to apache

2013-10-02 Thread Colin 't Hart
Actually, it would be quite easy to unzip an Apache 2.4 build (or even just a newer 2.2 build) next to the existing 2.2 install and configure it. Shut down the existing 2.2 and start up the new 2.4 (or the new 2.2). It might take a few goes back-n-forth, but if you can afford a little down time

Re: [users@httpd] httpd-2.2.22 Windows ipv6

2013-09-11 Thread Colin 't Hart
Try from www.apachelounge.com On 11 September 2013 19:12, olivier giorgi olivier_gio...@yahoo.fr wrote: Hello to all, I cannot see APR_HAS_IPV6 in the output. Where is the location of Windows build having IPV6 support ? As example for: httpd-2.2.22-win32-x86-no_ssl.msi

Re: [users@httpd] httpd-2.2.22 Windows ipv6

2013-09-10 Thread Colin 't Hart
Erm... use square brackets around the LISTEN address, see http://httpd.apache.org/docs/2.2/bind.html Or am I missing something? Cheers, Colin On 10 September 2013 19:30, olivier giorgi olivier_gio...@yahoo.fr wrote: Hello to all, Using httpd-2.2.22 on Windows, what is the recommended

[users@httpd] How to integrate Apache's authentication with my app's?

2013-09-06 Thread Colin 't Hart
Hi, We have a web app written in PL/SQL (stored procedures in an Oracle database). We use Apache and mod_owa (a variant on the mod_plsql theme) as HTTP glue. Currently we're on Apache 2.2, but upgrading to 2.4 would be an option. Our app handles security itself (our own tables of users and

Re: [users@httpd] How to integrate Apache's authentication with my app's?

2013-09-06 Thread Colin 't Hart
Thanks Eric! I wasn't aware of this module, this could work for us. The roundtrip into our app won't be a problem. Cheers, Colin On 6 September 2013 17:12, Eric Covener cove...@gmail.com wrote: On Fri, Sep 6, 2013 at 10:21 AM, Colin 't Hart colinth...@gmail.com wrote: Hi, We have