> -----Original Message-----
> From: [email protected] [mailto:[email protected]]
> Sent: Tuesday, July 14, 2009 4:05 AM
> To: [email protected]
> Subject: [us...@httpd] Conditional in httpd.conf
First off, httpd.conf is a config file - think of it as a data structure
like a hash-map. It is not a programming language and has no conditional
capabilities.
>
> I would like to achieve this:
>
> <If port is 443...>
>
> Execute / Parse this....
>
> </If port is 443...>
The SSL VH is actually an independent port-based VH so this is achieved
simply by the <VirtualHost> container. For example;
<VirtualHost *:80>
... plain HTTP website
</VirtualHost>
<VirtualHost *:443>
... SSL website
</VirtualHost>
Rgds,
Owen Boyle
Disclaimer: Any disclaimer attached to this message may be ignored.
>
>
> What is valid Apache22 syntax for this?
> That is, if port is 443, then additional config rules shall apply.
>
> ---------------------------------------------------------------------
> 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 unsubscribe, e-mail: [email protected]
> " from the digest: [email protected]
> For additional commands, e-mail: [email protected]
>
>
This message is for the named person's use only. It may contain confidential,
proprietary or legally privileged information. If you receive this message in
error, please notify the sender urgently and then immediately delete the
message and any copies of it from your system. Please also immediately destroy
any hardcopies of the message.
The sender's company reserves the right to monitor all e-mail communications
through their networks.
---------------------------------------------------------------------
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 unsubscribe, e-mail: [email protected]
" from the digest: [email protected]
For additional commands, e-mail: [email protected]