atom feed4 messages in ru.sysoev.nginxRe: loading a different robots.txt fi...
FromSent OnAttachments
Ilan BerknerMay 21, 2010 6:43 am 
RayMay 21, 2010 6:53 am 
Ilan BerknerMay 21, 2010 7:02 am 
Igor SysoevMay 21, 2010 7:23 am 
Subject:Re: loading a different robots.txt file for a different sub domain?
From:Igor Sysoev (ig@sysoev.ru)
Date:May 21, 2010 7:23:26 am
List:ru.sysoev.nginx

On Fri, May 21, 2010 at 10:03:10AM -0400, Ilan Berkner wrote:

Worked like a charm, thanks!

You may also use: location = /robots.txt {

On Fri, May 21, 2010 at 9:53 AM, Ray <gunb@gmail.com> wrote:

Yes.

server { listen 80 default; server_name www;

location /robots.txt { alias /path/to/the/file1; } }

server { listen 80; server_name server2;

location /robots.txt { alias /path/to/the/file2; } }

On Fri, May 21, 2010 at 9:43 PM, Ilan Berkner <iber@gmail.com> wrote:

Hi All, We have 2 sub-domain groups setup for processing incoming requests: 1. "server2" 2. all others, for example: "www" The 2 sub-domains share the same directory for delivery of static files (html, images, swf, etc.) but use different PHP backends. Is there a way, using nginx configuration to load a different robots.txt file when requested for one group vs. the other? Thanks!