Nginx-ru mailing list archive (nginx-ru@sysoev.ru)
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Вопрос по auth_basic.
Hello!
On Tue, Jul 07, 2009 at 04:08:38PM +0400, Sergey Shepelev wrote:
> А причина в том, что location / обрабатывает регексп ^/.* понимаете?
> location / обрабатывает любой урл вообще. Потому что все урлы
> начинаются с /.
Нет.
Maxim Dounin
>
> 2009/7/7 <maxhl@xxxxxxxxxxxxxx>:
> > День добрый.
> > Почему если есть:
> >
> > location / {
> > auth_basic "closed site";
> > auth_basic_user_file /home/htdocs/.ht_passwd;
> > index index.pl;
> > }
> >
> > И после идет:
> >
> > location /stats {
> > auth_basic "closed site";
> > auth_basic_user_file /home/htdocs/stats/.ht_passwd;
> > index index.pl;
> > fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
> > fastcgi_param SCRIPT_NAME $fastcgi_script_name;
> > fastcgi_pass unix:/mnt/md0/nginx-fcgi.sock;
> > fastcgi_index index.pl;
> > include /usr/local/nginx/conf/fastcgi.conf;
> > }
> >
> > То при запросе в /stats проверяет пользователя /home/htdocs/.ht_passwd; и
> > если нет то отдает
> >
> > HTTP request sent, awaiting response... 401 Unauthorized
> > Authorization failed.
> >
> > И в /home/htdocs/stats/.ht_passwd; даже не проверяет ...
> > Как можно правильно разделить location ?
> > ____________________________
> > С уважением Max ICQ 71006063
> >
> >
> >
|