Nginx-ru mailing list archive (nginx-ru@sysoev.ru)
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: выделить часть $request uri по регулярному выражения в переменную?
- To: nginx-ru@xxxxxxxxx
- Subject: Re: выделить часть $request uri по регулярному выражения в переменную?
- From: "mikhal123" <nginx-forum@xxxxxxxx>
- Date: Wed, 28 Nov 2012 12:06:09 -0500
- Dkim-signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=tigger.jlkhosting.com; s=x; h=Date:Sender:From:References:In-Reply-To:Message-ID:Content-Transfer-Encoding:Content-Type:Subject:To; bh=ju/+RI3y/0rabk2wY7SR0VGA5KxO9ZQTzkbqNA0g//8=; b=P5uqXndyjXh72CmXFCcGv8yQSpHvhcyRHQ1GKOGC8FZ9Sj476hV8ZcfIS9uV3aQUqT0uVU5qgtngii8E70uomDV7S+xYoUBWPQK2+wJvAtjbnNAGo3yiXc8S66GS43cn;
- In-reply-to: <1169157142.20121128002103@softsearch.ru>
- References: <1169157142.20121128002103@softsearch.ru>
полазив по инету, уже сделал себе примерно следующее:
if ($request_uri ~
^\/(host1|host2|host3|........)\/(.+)$) {
set $cache_host $1.coolsite.ru;
set $supercache_uri $2;
}
proxy_pass
http://1.1.1.1:80/$supercache_uri;
proxy_set_header Host $cache_host;
работает
Posted at Nginx Forum:
http://forum.nginx.org/read.php?21,233296,233345#msg-233345
_______________________________________________
nginx-ru mailing list
nginx-ru@xxxxxxxxx
http://mailman.nginx.org/mailman/listinfo/nginx-ru
|