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 Limit GET

[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 Limit and LimitExcept, but they do not appear to be working. The handlers get

[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 Limit, but that does not

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

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 only

[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 Location /

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

[EMAIL PROTECTED] Overriding Location /

2007-09-04 Thread Aaron Dalton
this? Here's what I want to do: Alias /js /foo/bar/js Directory /foo/bar/js Allow from all /Directory Location / # mod_perl handler stuff /Location Thanks for your time and attention. -- Aaron Dalton | Super Duper Games [EMAIL PROTECTED] | http://superdupergames.org

Re: [EMAIL PROTECTED] Overriding Location /

2007-09-04 Thread Aaron Dalton
Joshua Slive wrote: On 9/4/07, Aaron Dalton [EMAIL PROTECTED] wrote: I have an overarching Location / 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. As far as I know, however

Re: [EMAIL PROTECTED] Overriding Location /

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 Location / directive that passes everything in my virtual host through a home-rolled handler. I would like create a few directory

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 quit. No query is actually getting passed

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 quit. No query is actually getting passed

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

2007-07-04 Thread Aaron Dalton
valid-user /limit /Directory /VirtualHost -- 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-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't configured (unless

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 VirtualHost 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
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