Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a folder F with several html files

  • A.html
  • B.html
  • C.html
  • index.html

They are auto generated python doc by sphinx.

I would like my url /foo to show B.html unrestricted but everything else should prompt for a password using auth_basic "Restricted".

So far i tried the following without success

location /foo {
    index B.html;
    alias   /home/novagile/www/doc_novasniff/doc/_build/html;
    auth_basic            "off";


}
location /foo {
    index index.html;
    alias   /home/novagile/www/doc_novasniff/doc/_build/html;
    auth_basic            "Restricted";
    auth_basic_user_file  /etc/nginx/htpass;

}

An help is welcome,

Greg

share|improve this question

1 Answer

up vote 0 down vote accepted

try this.

location ~ ^/foo/?$ {
    root /home/novagile/www/doc_novasniff/doc/_build/html;
    rewrite ^ /B.html break;
}
location ~ ^/foo/(.+)$ {
    alias  /home/novagile/www/doc_novasniff/doc/_build/html/$1;
    index  index.html;
    auth_basic "Restricted";
    auth_basic_user_file /etc/nginx/htpass;
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.