Re: [us...@httpd] Handler Chain (based on request method)

2009-10-28 Thread Aaron Dalton
> Interesting issue. > Several things come to mind, roughly : > 1) you may want to (also) post this question on the mod_perl list > (modp...@perl.apache.org) Thank you for your response. I will cross-post that right now. > 2) what happens if you just remove the section > > > >

[us...@httpd] Restrict Proxy by method

2009-10-24 Thread Aaron Dalton
Is there a way to tell a proxy server to only forward requests using a particular method (GET, POST, etc...)? I have a web app with a front and back end server. I want the front end to pass along all GETs to the back, but reject all other methods. I've been using , but that does not work. I

[us...@httpd] Handler Chain (based on request method)

2009-10-24 Thread Aaron Dalton
I'm using mod_perl and CGI::Application::Dispatch to create a RESTful web application. In the one resource, GETs should be sent to the default handler, and all other requests to the dispatcher. I have tried using and , but they do not appear to be working. The handlers get processed regardle

Re: [EMAIL PROTECTED] SSL pass phrase

2007-10-16 Thread Aaron Dalton
On Tue, 16 Oct 2007, William A. Rowe, Jr. wrote: Aaron Dalton wrote: AFAIK there is no way around this. If you do not want Apache to wait for a pass phrase, you have to strip the private key of encryption. This of course has multiple security problems, but I'm afraid those are your

Re: [EMAIL PROTECTED] SSL pass phrase

2007-10-16 Thread Aaron Dalton
security problems, but I'm afraid those are your only options that I am aware of. $ openssl rsa -in encryptedkey.pem -out strippedkey.pem -- Aaron Dalton http://perlkonig.com - The official User-To-User support forum o

[EMAIL PROTECTED] Re: Basic SSL Question

2007-10-15 Thread Aaron Dalton
You can never have more than one SSL host on any given IP/Port combination. This has nothing to do with your web server but with the way SSL itself is constructed. http://httpd.apache.org/docs/2.2/ssl/ssl_faq.html#vhosts http://httpd.apache.org/docs/2.2/ssl/ssl_faq.html#vhosts2 -- Aaron

Re: [EMAIL PROTECTED] Overriding

2007-09-05 Thread Aaron Dalton
Joshua Slive wrote: > On 9/4/07, Aaron Dalton <[EMAIL PROTECTED]> wrote: > >> Thanks again. would be fine but how do I then associate >> /js with somewhere in the filesystem? I kept the Alias and >> directives too, but no go. I am confused about why slurps &g

Re: [EMAIL PROTECTED] Overriding

2007-09-04 Thread Aaron Dalton
Joshua Slive wrote: > On 9/4/07, Aaron Dalton <[EMAIL PROTECTED]> wrote: >> Joshua Slive wrote: >>> On 9/4/07, Aaron Dalton <[EMAIL PROTECTED]> wrote: >>>> I have an overarching directive that passes everything in >>>> my virtual host through

Re: [EMAIL PROTECTED] Overriding

2007-09-04 Thread Aaron Dalton
Joshua Slive wrote: > On 9/4/07, Aaron Dalton <[EMAIL PROTECTED]> wrote: >> I have an overarching directive that passes everything in >> my virtual host through a home-rolled handler. I would like create a >> few directory aliases, though, that bypass this handler. A

[EMAIL PROTECTED] Overriding

2007-09-04 Thread Aaron Dalton
what I want to do: Alias /js /foo/bar/js Allow from all # mod_perl handler stuff Thanks for your time and attention. -- Aaron Dalton | Super Duper Games [EMAIL PROTECTED] | http://superdupergames.org smime.p7s Description: S/MIME Cryptographic Signature

Re: [EMAIL PROTECTED] DBD and MySQL: No DBD Authn configured!

2007-09-03 Thread Aaron Dalton
Res wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > NotDashEscaped: You need GnuPG to verify this message > > Aaron, > > On Wed, 4 Jul 2007, Aaron Dalton wrote: > >> Yeah, something is still wrong. My query log shows a connect and an >> immediate

Re: [EMAIL PROTECTED] DBD and MySQL: No DBD Authn configured!

2007-09-03 Thread Aaron Dalton
Res wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > NotDashEscaped: You need GnuPG to verify this message > > Aaron, > > On Wed, 4 Jul 2007, Aaron Dalton wrote: > >> Yeah, something is still wrong. My query log shows a connect and an >> immediate

Re: [EMAIL PROTECTED] DBD and MySQL: No DBD Authn configured!

2007-07-04 Thread Aaron Dalton
Res wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 NotDashEscaped: You need GnuPG to verify this message Aaron, On Wed, 4 Jul 2007, Aaron Dalton wrote: Yeah, something is still wrong. My query log shows a connect and an immediate quit. No query is actually getting passed. If anybody

Re: [EMAIL PROTECTED] DBD and MySQL: No DBD Authn configured!

2007-07-04 Thread Aaron Dalton
Aaron Dalton wrote: Nick Kew wrote: On Wed, 04 Jul 2007 10:23:44 -0600 Aaron Dalton <[EMAIL PROTECTED]> wrote: Does it make any difference if you put the DBD* directives inside the container? Now that's just embarrassing. Everything I read said they can't go in the VHost

Re: [EMAIL PROTECTED] DBD and MySQL: No DBD Authn configured!

2007-07-04 Thread Aaron Dalton
Nick Kew wrote: On Wed, 04 Jul 2007 10:23:44 -0600 Aaron Dalton <[EMAIL PROTECTED]> wrote: . The problem is that everytime I try to authenticate I get a 500 error and the following log entry: "No DBD Authn configured!" That's not the message you get if the driver isn

[EMAIL PROTECTED] DBD and MySQL: No DBD Authn configured!

2007-07-04 Thread Aaron Dalton
lserver dbname=** user=** pass=**" DBDPersist on DBDMin 1 DBDKeep 2 DBDMax 10 DBDExptime 60 AuthTypeBasic AuthBasicProvider dbd AuthDBDUserPWQuery "SELECT password FROM users WHERE username=%s" AuthName "Super Duper Ga