Regular expressions in server_name: pattern length
Michael Shadle
mike503 at gmail.com
Fri Feb 5 01:10:05 MSK 2010
I'm trying this right now:
server {
listen 80;
server_name ^(?<domain>.+)(\.mydomain\.com)$;
rewrite ^ http://foo.net/script/index.php?title=$domain permanent;
}
also tried
server_name ^(?<domain>.+)\.mydomain\.com$;
it says unknown variable $domain
it's 0.8.24. also tried 0.8.33.
[emerg]: unknown "domain" variable
Any help? :)
On Wed, Dec 9, 2009 at 4:53 AM, Igor Sysoev <igor at sysoev.ru> wrote:
> On Wed, Dec 09, 2009 at 04:51:33AM -0800, Michael Shadle wrote:
>
>> On Wed, Dec 9, 2009 at 4:49 AM, Igor Sysoev <igor at sysoev.ru> wrote:
>>
>> > Named server_name captures can be used since 0.8.25.
>>
>> What do you mean by 'named'
>
> server {
> server_name ~^(www\.)?(?<domain>.+)$;
>
> location / {
> root /sites/$domain;
> }
> }
>
>
> --
> Igor Sysoev
> http://sysoev.ru/en/
>
> _______________________________________________
> nginx mailing list
> nginx at nginx.org
> http://nginx.org/mailman/listinfo/nginx
>
More information about the nginx
mailing list