PHP can't run under alias folder

Edho P Arief edhoprima at gmail.com
Sat Jul 18 18:12:32 MSD 2009


On Sat, Jul 18, 2009 at 8:44 PM, e123e123e123<nginx-forum at nginx.us> wrote:
> location /phpmyadmin/ {
> alias /home/httpd/html/phpmyadmin/;
> index index.php index.html index.htm;
> auth_basic            "Restricted";
> auth_basic_user_file  /home/httpd/html/phpmyadmin/.htpasswd;
> }

        location ~ ^/phpmyadmin($|/.*) {
                 alias /home/httpd/html/phpmyadmin$1;
                 index index.php index.html index.htm;
                 auth_basic            "Restricted";
                 auth_basic_user_file  /home/httpd/html/phpmyadmin/.htpasswd;
        }


>
> location ~ ^/phpmyadmin/(.*\.php)$ {
> alias /home/httpd/html/phpmyadmin/$1;
> fastcgi_pass 127.0.0.1:9000;
> fastcgi_index index.php;
> include fcgi.conf;
> fastcgi_param SCRIPT_FILENAME $request_filename;
> }
>
>    location ~ .*\.(php|php5)?$
>    {
>      #fastcgi_pass  unix:/tmp/php-cgi.sock;
>      fastcgi_pass  127.0.0.1:9000;
>      fastcgi_index index.php;
>      include fcgi.conf;
>    }
>
>    location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
>    {
>      expires      30d;
>    }
>
>    location ~ .*\.(js|css)?$
>    {
>      expires      1h;
>    }
>
>   log_format  access  '$remote_addr - $remote_user [$time_local] "$request" '
>              '$status $body_bytes_sent "$http_referer" '
>              '"$http_user_agent" $http_x_forwarded_for';
>    access_log  /var/log/access.log  access;
>   }
>
> }
>
> Posted at Nginx Forum: http://forum.nginx.org/read.php?2,4151,4177#msg-4177
>
>
>



-- 
O< ascii ribbon campaign - stop html mail - www.asciiribbon.org





More information about the nginx mailing list