Want to subscribe to topics you're interested in?
Become a Member

Nginx Protected folder is downloading the file and not open it on browser

Discussion in 'Nginx, PHP-FPM & MariaDB MySQL' started by pamamolf, Dec 2, 2014.

  1. pamamolf

    pamamolf Premium Member Premium Member

    4,068
    427
    83
    May 31, 2014
    Ratings:
    +832
    Local Time:
    5:10 AM
    Nginx-1.25.x
    MariaDB 10.3.x
    Hi


    I try to password protect a folder using:

    Code:
    python /usr/local/nginx/conf/htpasswd.py -c -b /usr/local/nginx/conf/htpasswdnew usernamehere passwordhere
    and then add the code to domain config file: mydomain.com.conf under the:

    Code:
      # Enable for vBulletin usage WITHOUT vbSEO installed
       try_files        $uri $uri/ /index.php;
    
      }
    like:

    Code:
    location ^~/admin/ {
    auth_basic "Private";
    auth_basic_user_file /usr/local/nginx/conf/htpasswdnew;
    }

    And then i restart nginx and go to path and add the user and pass and then when is accepted it just download the php file and not open it on browser :(
     
  2. eva2000

    eva2000 Administrator Staff Member

    53,488
    12,130
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +18,672
    Local Time:
    12:10 PM
    Nginx 1.27.x
    MariaDB 10.x/11.4+
    you'd need to include the php.conf include file within the protection location context

    Code:
    location ^~/admin/ {
    auth_basic "Private";
    auth_basic_user_file /usr/local/nginx/conf/htpasswdnew;
    include /usr/local/nginx/conf/php.conf;
    }
     
  3. pamamolf

    pamamolf Premium Member Premium Member

    4,068
    427
    83
    May 31, 2014
    Ratings:
    +832
    Local Time:
    5:10 AM
    Nginx-1.25.x
    MariaDB 10.3.x
    Great thanks !!!! :)