On 2019-05-06 16:47, ender ulusoy wrote:
> Main office ip 200.100.50.10
>
> And it's shared office. I can not setup any dns services there. All
> the developers come from this ip.

map $remote_addr $is_web_dev  {
        200.100.50.10  1;
        default  0;
}

server {
        server_name www.aaa.com;

        if ($is_web_dev) {
                return 301 http://stage.aaa.com$uri ;
        }
        # rest of normal prod config


This config is probably going to cause something to blow up in the
future because it is not doing what the user requested -- if the user
wanted staging they should have just used http://stage.aaa.com in the
first place.


Patrick
_______________________________________________
nginx mailing list
[email protected]
http://mailman.nginx.org/mailman/listinfo/nginx

Reply via email to