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
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.
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; }