Protected folders without PHP support

Discussion in 'Feature Requests' started by r00t.ati, May 10, 2012.

  1. r00t.ati

    r00t.ati New Member

    Hello, i'm actually using ISPConfig3 with NginX on Debian 6.
    I want to report a little bug in "Protected Folders".

    When i add new "Protected Folder", the nginx configuration do not write PHP section, so when i try to run the /admin/index.php, it will be downloaded and not interpreted.

    Is it in the TODO LIST?

    Thanks
     
  2. falko

    falko Super Moderator Howtoforge Staff

    I've added this to our bugtracker, so we will check that.

    I've improved the folder protection for nginx in SVN, but will check again for the PHP location. Maybe it's fixed already.
     
  3. r00t.ati

    r00t.ati New Member

    Thank you falko.
    I'll check SVN!

    Have a good day! ;)
     
  4. falko

    falko Super Moderator Howtoforge Staff

    I've fixed this in SVN. :)
     
  5. BPuma

    BPuma New Member

    Please help! How can I solve this problem?
     
  6. falko

    falko Super Moderator Howtoforge Staff

    Wait for the final release of ISPConfig 3.0.5. It won't be long. :)
     
  7. BPuma

    BPuma New Member

    Thanks for nothing!!!
    I'm sorry, but that's not relevant to me. No time to wait!
    The solution:

    /etc/nginx/sites-available/your.site.vhost

    location ^~ /admin/ {
    auth_basic "Members Only";
    auth_basic_user_file /var/www/clients/client2/web3/web/admin/.htpasswd;

    location ~ \.php$ {
    include /etc/nginx/fastcgi_params;
    fastcgi_pass 127.0.0.1:9012;
    fastcgi_index index.php;
    fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
    fastcgi_param PATH_INFO $fastcgi_script_name;
    fastcgi_intercept_errors on;
    }
     

Share This Page