Antwort: Re: Antwort: [Mod_gzip] mod_gzip excluding port 443
mod_gzip@lists.over.net
mod_gzip@lists.over.net
Thu, 17 Oct 2002 11:05:43 +0200
Hi Douglas,
>> How is this working?
>> Could you give us a configuration example for one virtual host?
> <VirtualHost *:80 *:443>
Is this equivalent to
<VirtualHost *:80>
include "this_virtual_host_directives"
</VirtualHost>
<VirtualHost *:443>
include "this_virtual_host_directives"
mod_gzip_on no
</VirtualHost>
?
I am working with a lot of include statements, having my
configuration modularized in a very similar way to the
Apache modules concept.
My mod_gzip configuration directives are stored inside some
mod_gzip.conf and can included by whichever Virtual Host
that wants them; actually I include them inside the main
host section and disable some Virtual Hosts by turning off
"mod_gzip_on".
Regards, Michael