Multiple vhosts with wildcards?

Phillip B Oldham phill at theactivitypeople.co.uk
Wed Feb 20 12:46:23 MSK 2008


Hi

At the moment we're using lighttpd, but its proving to be a little flaky 
with php-fcgi. I'd like to know whether its possible to get the 
following set-up working so I can replace lighttpd with nginx.

We use a *lot* of wildcard domains. The subdomains correspond to a 
client, and they have their own areas:

review.*.ourdomain.com
mail.*.ourdomain.com
dev.*.ourdomain.com
*.ourdomain.com

This is pretty trivial to set up in lighttpd:

$HTTP["host"] =~ "^review\.(.*)\.ourdomain\.com" {}
$HTTP["host"] =~ "^mail\.(.*)\.ourdomain\.com" {}
$HTTP["host"] =~ "^dev\.(.*)\.ourdomain\.com" {}
$HTTP["host"] =~ "^(.*)\.ourdomain\.com" {}

Trying to set up something similar in nginx raises problems. This is my 
setup:

server {
server_name review.it.ourdomain.com review.*.ourdomain.com;
...
}

server {
server_name dev.it.ourdomain.com dev.*.ourdomain.com;
...
}

but this just throws the following error:

[emerg] 3320#0: invalid server name or wildcard "dev.*.ourdomain.com"

Any idea how I can achieve the result I'm looking for?
-- 

*Phillip B Oldham*
The Activity People
phill at theactivitypeople.co.uk <mailto:phill at theactivitypeople.co.uk>

------------------------------------------------------------------------

*Policies*

This e-mail and its attachments are intended for the above named 
recipient(s) only and may be confidential. If they have come to you in 
error, please reply to this e-mail and highlight the error. No action 
should be taken regarding content, nor must you copy or show them to anyone.

This e-mail has been created in the knowledge that Internet e-mail is 
not a 100% secure communications medium, and we have taken steps to 
ensure that this e-mail and attachments are free from any virus. We must 
advise that in keeping with good computing practice the recipient should 
ensure they are completely virus free, and that you understand and 
observe the lack of security when e-mailing us.

------------------------------------------------------------------------
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://nginx.org/pipermail/nginx/attachments/20080220/3a57dbb7/attachment.html>
-------------- next part --------------
A non-text attachment was scrubbed...
Name: phill.vcf
Type: text/x-vcard
Size: 261 bytes
Desc: not available
URL: <http://nginx.org/pipermail/nginx/attachments/20080220/3a57dbb7/attachment.vcf>


More information about the nginx mailing list