You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@httpd.apache.org by ra...@gmail.com on 2009/07/14 04:04:51 UTC

[users@httpd] Conditional in httpd.conf

I would like to achieve this:

<If port is 443...>
	
	Execute / Parse this....
	
</If port is 443...>


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: users-unsubscribe@httpd.apache.org
   "   from the digest: users-digest-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org


RE: [users@httpd] Conditional in httpd.conf

Posted by Boyle Owen <Ow...@six-group.com>.
> -----Original Message-----
> From: rank1seeker@gmail.com [mailto:rank1seeker@gmail.com] 
> Sent: Tuesday, July 14, 2009 4:05 AM
> To: users@httpd.apache.org
> Subject: [users@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: users-unsubscribe@httpd.apache.org
>    "   from the digest: users-digest-unsubscribe@httpd.apache.org
> For additional commands, e-mail: users-help@httpd.apache.org
> 
> 
 
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: users-unsubscribe@httpd.apache.org
   "   from the digest: users-digest-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org