RE: [EMAIL PROTECTED] Blocking invalid URIs?

2006-03-12 Thread Boyle Owen
> -Original Message- > From: John Rodenbiker [mailto:[EMAIL PROTECTED] > Sent: Freitag, 10. März 2006 22:59 > To: users@httpd.apache.org > Subject: [EMAIL PROTECTED] Blocking invalid URIs? > > I'm very new to running a web server. > > Is there a way to have httpd drop requests No. The

RE: Re[2]: [EMAIL PROTECTED] Conditional Directives

2006-03-12 Thread Boyle Owen
> -Original Message- > From: Alan Little [mailto:[EMAIL PROTECTED] > Sent: Montag, 13. März 2006 07:28 > To: Tony Heal > Subject: Re[2]: [EMAIL PROTECTED] Conditional Directives > > That's interesting. Does that include .htaccess files? Could you give > me an example of how to do it? I g

RE: [EMAIL PROTECTED] Sending images and ASCII in same content stream

2006-03-12 Thread Boyle Owen
> -Original Message- > From: Dustin Oprea [mailto:[EMAIL PROTECTED] > Sent: Samstag, 11. März 2006 00:01 > To: users@httpd.apache.org > Subject: [EMAIL PROTECTED] Sending images and ASCII in same content stream > > Is it possible to send the binary images and ASCII HTML in the same > doc

Re[2]: [EMAIL PROTECTED] Conditional Directives

2006-03-12 Thread Alan Little
That's interesting. Does that include .htaccess files? Could you give me an example of how to do it? -- Alan Little Holotech Enterprises On Sunday, March 12, 2006, 11:43:57 PM, you wrote: > Yes, apache conf file can be written in perl, so you can use if > statements to determine whether you wan

RE: [EMAIL PROTECTED] Conditional Directives

2006-03-12 Thread Tony Heal
Yes, apache conf file can be written in perl, so you can use if statements to determine whether you want something installed or not depending on whatever your criteria is. Tony Heal Pace Systems Group, Inc. 800-624-5999 [EMAIL PROTECTED] -Original Message- From: Alan Little [mailto:[EMA

[EMAIL PROTECTED] Re: mod_dav / mod_ssl file corruption

2006-03-12 Thread A. Micka
I hope someone has further insight on this because we're stumped -- We have been running mod_ssl+mod_dav behind a mod_proxy instance for years.  However, our upgrade from 2.0.52 to 2.0.55 has caused some very strange behavior: A WebDAV PUT over SSL stalls after uploading 8k of data.  When accesse

[EMAIL PROTECTED] DMZ and Port Forward

2006-03-12 Thread Michael Louie Loria
Hello, What is the difference if I place the web server in DMZ or behind the router via Port forward? What are the security, performance ... issues between the 2? Thanks, Michael Louie Loria LoRz Technology Solutions http://www.lorztech.com signature.asc Description: OpenPGP digital signatur

Re: [EMAIL PROTECTED] How do you send mixed-MIME content?

2006-03-12 Thread Nick Kew
On Sunday 12 March 2006 22:00, Dustin Oprea wrote: > How can one send HTML content, binary image data, and then more HTML > content? That's what MIME multipart documents are for. I don't recollect the number of the MIME RFC, but I expect google can find it. I'm not sure what clientside support l

Re: [EMAIL PROTECTED] How do you send mixed-MIME content?

2006-03-12 Thread Alan Little
What the heck, I'll take a go at this. Short answer: sure, anything's *possible*. Long answer: AFAIK, there is no way to do it directly with Apache, but I am very far from being an Apache expert. You might be able to do it with an output filter -- I don't really know much about filters. I know a

[EMAIL PROTECTED] How do you send mixed-MIME content?

2006-03-12 Thread Dustin Oprea
How can one send HTML content, binary image data, and then more HTML content? I'm trying to cut-out external file use for my database backend. Dustin - The official User-To-User support forum of the Apache HTTP Server Proj

Re: Re[2]: [EMAIL PROTECTED] Conditional Directives

2006-03-12 Thread Joshua Slive
On 3/12/06, Alan Little <[EMAIL PROTECTED]> wrote: > Well, for example, all my sites are mirrored on my local machine, with > a .loc TLD. There are things I use on the live sites that I don't need > or want on the local mirror -- script wrapping, authentication, etc. > It would make it easier if I

Re[2]: [EMAIL PROTECTED] Conditional Directives

2006-03-12 Thread Alan Little
Well, for example, all my sites are mirrored on my local machine, with a .loc TLD. There are things I use on the live sites that I don't need or want on the local mirror -- script wrapping, authentication, etc. It would make it easier if I could test HTTP_HOST and configure accordingly. The altertn

Re: [EMAIL PROTECTED] Finding what module are installed

2006-03-12 Thread httpd2
If you are using or thinking about using php, you can get s listing of all installed apache modules, with the phpinfo() function, such as: Loaded Modules core prefork http_core mod_so mod_authn_file mod_authn_dbm mod_authn_anon mod_authn_dbd mod_authn_default mod_authz_host mod_authz_groupfi

Re: [EMAIL PROTECTED] Conditional Directives

2006-03-12 Thread Joshua Slive
On 3/12/06, Alan Little <[EMAIL PROTECTED]> wrote: > Is there a general way to make Apache directives conditional, based on > such things as environment variables, presence of a file or directory, > etc.? I'm familiar with such things as IfModule or IfDefine, but want > something more general. I'v

[EMAIL PROTECTED] mod_rewrite question

2006-03-12 Thread Paul Aviles
I am pulling my hair out with this. I have a single public IP and already have a web server redirected on the firewall from the external IP to the private IP of 10.5.36.5. Now I need to enable another box (10.5.36.6) running on port 80 to be accessible from the outside. I can open port 81 on the

[EMAIL PROTECTED] Conditional Directives

2006-03-12 Thread Alan Little
Is there a general way to make Apache directives conditional, based on such things as environment variables, presence of a file or directory, etc.? I'm familiar with such things as IfModule or IfDefine, but want something more general. I've searched all day and can't find anything, but perhaps I'm

Re: [EMAIL PROTECTED] Finding what module are installed

2006-03-12 Thread Thomas Anderson
How do I check if mod_info is enabled?On 3/12/06, Sean Conner <[EMAIL PROTECTED]> wrote: It was thus said that the Great Thomas Anderson once stated:>> I get a "Not found" when I try that>> Not Found>> The requested URL /server-info was not found on this server. >> Any idea why?  You need to make s

Re: [EMAIL PROTECTED] Finding what module are installed

2006-03-12 Thread Sean Conner
It was thus said that the Great Thomas Anderson once stated: > > I get a "Not found" when I try that > > Not Found > > The requested URL /server-info was not found on this server. > > Any idea why? You need to make sure that mod_info is enabled. -spc (Hmm ... guess going to /server-info

Re: [EMAIL PROTECTED] Finding what module are installed

2006-03-12 Thread Sean Conner
It was thus said that the Great Nick Kew once stated: > > Debian's package makes the configuration very confusing. If you have > an up-to-date Apache then "httpd -M" will tell you straight away, but .. > > > Look into using mod_info. Look in the configuration file for a section > > that looks

Re: [EMAIL PROTECTED] Finding what module are installed

2006-03-12 Thread Thomas Anderson
I get a "Not found" when I try thatNot Found The requested URL /server-info was not found on this server.Any idea why?On 3/12/06, Sean Conner < [EMAIL PROTECTED]> wrote:It was thus said that the Great Thomas Anderson once stated: >> Hi,> I have Apache2 installed on a debian server. I had installed