Welcome! Log In Create A New Profile

Advanced

Re: Matching server host name in location directive

Edho P Arief
July 05, 2011 02:54AM
On Tue, Jul 5, 2011 at 12:49 PM, Quintin Par <quintinpar@gmail.com> wrote:
>  Can someone help me answer this question at
>   serverfault.comhttp://serverfault.com/questions/286828/nginx-matching-server-host-name-in-location-directive?
>
> -------
>   Posted again
>
>   I have nginx running multiple domains under a single server directive as
>   server {
>           listen       80;
>           server_name  www.domain.com;
>           server_name  x.domain.com;
>           server_name  y.domain.com;
>   ----
>   ----
>   ----
>   }
>
>   Now, I need to use location directive to match a subdomain and apply basic
>   auth to it. The equivalent of
>
>   location x.domain.com {
>           auth_basic "Admin Login";
>          auth_basic_user_file /etc/nginx/.htpasswd;
>   }
>
>   How do I do this using DRY?
>

server {
  server_name  www.domain.com;
  server_name  y.domain.com;
include myapps.conf;
}

server {
  server_name  x.domain.com;
include myapps.conf;
  auth_basic "Admin Login";
auth_basic_user_file /etc/nginx/.htpasswd;
}


_______________________________________________
nginx mailing list
nginx@nginx.org
http://nginx.org/mailman/listinfo/nginx
Subject Author Posted

Matching server host name in location directive

Quintin Par July 05, 2011 01:50AM

Re: Matching server host name in location directive

Edho P Arief July 05, 2011 02:54AM

Re: Matching server host name in location directive

Francis Daly July 05, 2011 04:06AM

Re: Matching server host name in location directive

Quintin Par July 05, 2011 04:30AM

Re: Matching server host name in location directive

antituhan July 17, 2011 11:32PM



Sorry, only registered users may post in this forum.

Click here to login

Online Users

Guests: 182
Record Number of Users: 8 on April 13, 2023
Record Number of Guests: 421 on December 02, 2018
Powered by nginx      Powered by FreeBSD      PHP Powered      Powered by MariaDB      ipv6 ready