[EMAIL PROTECTED] Filter at vrtual server level

2008-03-30 Thread Vinay Purohit
Hi, I have designed a apache filter which redirects request to our custom application. I have varrious virtual server running (both IP based and name based . Is it possible if I want to run this filter at virtual server level not at global level so that start and stop of one virtual server does

[EMAIL PROTECTED] Name-based virtual hosting with SSL

2008-03-30 Thread Vinay Purohit
Hi, Why Name-based virtual hosting cannot be used with SSL secure servers ? \Vinay - The official User-To-User support forum of the Apache HTTP Server Project. See URL:http://httpd.apache.org/userslist.html for more info. To

[EMAIL PROTECTED] How to FilesMatch files within a certain domain

2008-03-30 Thread thomas Armstrong
Hi. I want to cache multimedia files by using mod_expires and created this rule within my .htaccess file: --- ExpiresActive On FilesMatch \.(flv|ico|pdf|avi|mov|ppt|doc|mp3|wmv|wav|swf)$ ExpiresDefault A29030400 /FilesMatch However, this .htaccess file is shared by five

Re: [EMAIL PROTECTED] Name-based virtual hosting with SSL

2008-03-30 Thread John Almberg
It can be, but you have to use a non-standard port if you have more than one domain on the IP address. I do this for internal use, but as someone recently pointed out, some corporate firewalls block non- standard ports, so you can't depend on this technique for commercial sites that must

RE: [EMAIL PROTECTED] Loadbalancing/stickysession/Source_IP

2008-03-30 Thread Tamer Embaby
Yavor, I'm not quite sure about how to setup proxy_load_balancer to stick by source IP, but I guess you can install 2 frontend Apaches infront of your backends webclients to be sure that those Apaches will always send beackend specific Cookie header for your load balancer. May be that would

[EMAIL PROTECTED] mod_negotiate and source qualities by type, charset, language, and encoding

2008-03-30 Thread Daniel Aleksandersen
On 2008-03-27, Joshua Slive wrote: On Thu, Mar 27, 2008 at 12:11 PM, Daniel Aleksandersen [EMAIL PROTECTED] wrote: On 2008-03-27, Joshua Slive wrote: As far as I know, there is no way to set source quality in apache other than through type maps. Is there a way to set global type

Re: [EMAIL PROTECTED] How to FilesMatch files within a certain domain

2008-03-30 Thread Joshua Slive
On Sun, Mar 30, 2008 at 5:05 AM, thomas Armstrong [EMAIL PROTECTED] wrote: Hi. I want to cache multimedia files by using mod_expires and created this rule within my .htaccess file: --- ExpiresActive On FilesMatch \.(flv|ico|pdf|avi|mov|ppt|doc|mp3|wmv|wav|swf)$ ExpiresDefault

Re: [EMAIL PROTECTED] Name-based virtual hosting with SSL

2008-03-30 Thread Joshua Slive
On Sun, Mar 30, 2008 at 3:36 AM, Vinay Purohit [EMAIL PROTECTED] wrote: Hi, Why Name-based virtual hosting cannot be used with SSL secure servers ? Because in order to choose the correct certificate to negotiate the secure connection, the server must know what name to use. But the name in

[EMAIL PROTECTED] Logging Denied Referrers

2008-03-30 Thread Grant Peel
Hi all, As mentioned in previous emails, I am trying to deny access via SetEnvIf statements in my httpd.conf (to block smap bots / email harvesters etc. I have two questions: 1. My server has several hundred VirtualHost directives. When the SetEnvIf statements are just placed in the main

Re: [EMAIL PROTECTED] Logging Denied Referrers

2008-03-30 Thread Joshua Slive
On Sun, Mar 30, 2008 at 12:15 PM, Grant Peel [EMAIL PROTECTED] wrote: Hi all, As mentioned in previous emails, I am trying to deny access via SetEnvIf statements in my httpd.conf (to block smap bots / email harvesters etc. I have two questions: 1. My server has several hundred

Re: [EMAIL PROTECTED] Logging Denied Referrers

2008-03-30 Thread Grant Peel
Thanks Joshua, So, If I am reading that docs correctly, the bit I have to deny certain USer Agents should go near the top of my httpd.conf? SetEnvIfNoCase User-Agent ^IDBot block_bad_bots SetEnvIfNoCase User-Agent ^$ block_bad_bots SetEnvIfNoCase User-Agent Java/1.4.1_04 block_bad_bots

Re: [EMAIL PROTECTED] Logging Denied Referrers

2008-03-30 Thread Joshua Slive
On Sun, Mar 30, 2008 at 3:32 PM, Grant Peel [EMAIL PROTECTED] wrote: Thanks Joshua, So, If I am reading that docs correctly, the bit I have to deny certain USer Agents should go near the top of my httpd.conf? SetEnvIfNoCase User-Agent ^IDBot block_bad_bots SetEnvIfNoCase User-Agent ^$

Re: [EMAIL PROTECTED] Logging Denied Referrers

2008-03-30 Thread Grant Peel
Joshua, So, cand these be combined into one container somehow? Directory / Order Allow,Deny Allow from all Deny from env=block_bad_bots /Directory Directory /home/*/www Options Indexes Includes FollowSymLinks # FollowSymLinks MultiViews AllowOverride Options All