Re: [EMAIL PROTECTED] recovering a .conf file

2008-11-26 Thread Brian Munroe
On Wed, Nov 26, 2008 at 12:50 PM, André Warnier <[EMAIL PROTECTED]> wrote: > It prints absolutely the full configuration, even directives I did not even > know I had (probably the defaults assumed by Apache for some things). > Only works if you have mod_perl though. > This being said, since I do h

Re: [EMAIL PROTECTED] recovering a .conf file

2008-11-26 Thread Brian Munroe
On Wed, Nov 26, 2008 at 8:21 AM, André Warnier <[EMAIL PROTECTED]> wrote: > John Clement wrote: >> >> I accidentally removed a .conf file from the conf.d directory. >> >> I had hopes that I could get the config back using httpd -S, but it >> seemingly only shows sites defined in the files that are

Re: [EMAIL PROTECTED] Multiple concurrent instances of apache

2007-09-30 Thread Brian Munroe
On 9/30/07, Ian Johnson <[EMAIL PROTECTED]> wrote: > > Am I doing thinks a little backwards here. I simply have a requirement that: > >1. I can't use a name based servers, and >2. I want to keep two completely separate and independent server roots. > > Is this not possible? > I have had t

Re: [EMAIL PROTECTED] Multiple concurrent instances of apache

2007-09-30 Thread Brian Munroe
On 9/29/07, Ian Johnson <[EMAIL PROTECTED]> wrote: > To Whom is able to help: > > I am trying to install multiple instances of apache 2.2.6 on a gentoo box. > Not my first way of doing things, but to each his own. > > 1. Has someone in here done this on a gentoo box. If so can you > please pro

Re: [EMAIL PROTECTED] ProxyPassReverse doesn't work...,Help!

2007-09-11 Thread Brian Munroe
On 9/11/07, Joshua Slive <[EMAIL PROTECTED]> wrote: > http://wiki.apache.org/httpd/WatchingHttpHeaders > > > ProxyPass /mingle/ http://192.168.50.89:7979/ > > ProxyPassReverse /mingle/ http://192.168.50.89:7979/ > > > > > > ProxyPass http://192.168.50.89:7979/ > > ProxyPassReverse http:/

Re: [EMAIL PROTECTED] Testing Python Mod

2007-09-04 Thread Brian Munroe
On 9/4/07, Dragon <[EMAIL PROTECTED]> wrote: > > You cannot have any indentation on line 1 of your script as that is > the top level of coade and must have zero indentation until you enter > a new code block with a different execution scope. > > Anyway, this is not an Apache issue any longer, you

Re: [EMAIL PROTECTED] Testing Python Mod

2007-09-04 Thread Brian Munroe
On 9/4/07, Chris Howell <[EMAIL PROTECTED]> wrote: > > Brian: > I made the modifications you suggested my httpd conf file now has this > entry in it. > > LoadModule python_module modules/mod_python.so > > Foundation/Apache2.2/htdocs/Test"> > Order deny,allow > Satisfy all > AddHandl

Re: [EMAIL PROTECTED] Conditional Logging for HTTP Status Codes

2007-09-01 Thread Brian Munroe
On 9/1/07, Matus UHLAR - fantomas <[EMAIL PROTECTED]> wrote: > > what's the point? 304 is understood as a hit, the same as 200, but the > content is not resent to client, because client already has it. > Just trying to reduce the size of access.logs. It isn't a big deal, but I just thought that

Re: [EMAIL PROTECTED] Apache under MacOSX 10.4.10

2007-08-31 Thread Brian Munroe
On 8/30/07, Eric Gorr <[EMAIL PROTECTED]> wrote: > I am also assuming that if I install Apache2, I would no longer be > able to use the Sharing panel to turn the server on/off and would > need to do so from the command line. > > I can't imagine this is terribly difficult...I just don't know the >

Re: [EMAIL PROTECTED] Testing Python Mod

2007-08-31 Thread Brian Munroe
On 8/31/07, Chris Howell <[EMAIL PROTECTED]> wrote: > > AddHandler python-program .py > PythonHandler mptest > PythonDebug On > Chris: I would suggest you use the Publisher mod_python handler, at least to get started. Here is a simple hello, world in mod_python. I assume you fixed your othe

Re: [EMAIL PROTECTED] mod_python

2007-08-30 Thread Brian Munroe
On 8/30/07, Chris Howell <[EMAIL PROTECTED]> wrote: > > So I am very bewildered. > Yea me too, I have the *exact* same configuration and everything works perfectly. Googling tells me that there was some problems with Apache 2.2 and older versions of mod_python, but not 3.3.1. The only suggestio

Re: [EMAIL PROTECTED] mod_python

2007-08-30 Thread Brian Munroe
On 8/30/07, Jeff Peng <[EMAIL PROTECTED]> wrote: > > Why mod_python.so is located under apache root dir not module dir? > You many installed something wrong. ?? The location that Chris specified in the OP is correct. It *is* in the module directory. One curious thing though: 'C:/Program Files

Re: [EMAIL PROTECTED] configuring SSL

2007-08-27 Thread Brian Munroe
On 8/26/07, Galaxy Virus <[EMAIL PROTECTED]> wrote: > Dear all, > > To get private key and certificate, I did, > > $ openssl req -new -x509 -newkey rsa:2048 -out host_req.pem -keyout > host_key.pem > > And I sent certificate (host_req.pem) to CA in order to get real certificate > and they sent

Re: [EMAIL PROTECTED] Conditional Logging for HTTP Status Codes

2007-08-21 Thread Brian Munroe
On 8/20/07, Vincent Bray <[EMAIL PROTECTED]> wrote: > > And further, it's probably not worth it to do so as you can just > filter the logs during processing, or during the logging by using a > piped logger. > That is the solution I am looking into. Thanks for the confirmation. -- brian ---

[EMAIL PROTECTED] Conditional Logging for HTTP Status Codes

2007-08-20 Thread Brian Munroe
Just wanted to make sure I was reading the httpd documentation correctly. There is no way to use conditional logging to drop 304 HTTP status codes, right? Anyone have a solution they'd like to share? thanks -- brian - The offi

Re: [EMAIL PROTECTED] redirecting https to http..

2006-08-02 Thread Brian Munroe
I am sorry I guess I was not clear. Just redirection works fine.. The problem is when I issue https://example.com on browser I get certificate is not signed by proper authority.. The reason is I have created a self signed certificate and installed. I have sent certificate to get it signed but mea

Re: [EMAIL PROTECTED] redirecting https to http..

2006-08-02 Thread Brian Munroe
On 8/2/06, Divakar <[EMAIL PROTECTED]> wrote: Hi, I would like to redirect all users trying https://example.com/ ==> http://example.com How about using a Redirect instead of a Rewrite rule? Put something like this in the section for your SSL virtual host Redirectmatch ^/(.*)$ http://example