Hello,
at first let me thank you for developing NginX! I use NginX 0.8.48, PHP
5.3.3 with inbuilt php-fpm version 0.6.5 on CentOS 5.5.
But there is one problem I have been trying to solve for hours without
success: I want that PHP only gets parsed in an "aliased" subfolder but
not in the parent location. Is this even possible?
I tried to achieve my aim in several ways, including this one:
[code]
server
{
listen 80;
server_name subdomain.example.com;
root /var/www/example/html;
index index.html index.php;
# Igor's suggestion from June 2009:
forum.nginx.org/read.php?2,3059,3060#msg-3060
location ~ /test/
{
alias /var/www/phpmyadmin/;
}
location ~ ^/test/(.+\.php)$
{
alias /var/www/phpmyadmin/$1;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $request_filename;
include /etc/nginx/fastcgi_params;
}
location ~* \.(css|js|jpg|jpeg|gif|png|cur|bmp)$
{
access_log off;
expires 60d;
}
}
[/code]
PHP should only get parsed in
[color=#0033CC]subdomain.example.com/test/[/color] ==
[color=#CC3300]/var/www/phpmyadmin/[/color]
but not in
[color=#0033CC]subdomain.example.com/[/color] ==
[color=#CC3300]/var/www/example/html/[/color]
because another person has access to
[color=#CC3300]/var/www/example/html/[/color] via chrooted SFTP, too.
Unfortunately, index.php in
[color=#0033CC]subdomain.example.com/test/[/color] (at the moment a
simple [color=#999999]<?php phpinfo(); ?>[/color]) doesn't get parsed
but is provided for download by Chromium, while Opera shows the source
code of the PHP file.
I also tried to nest "[i]location[/i]" directives and to work with
"[i]if[/i]", but that didn't work either. For example:
[code]
location ~* /test/
{
alias /var/www/phpmyadmin/;
if ($uri ~ "\.php$")
{
fastcgi_pass 127.0.0.1:9000;
}
}
[/code]
I know that I could simply use a different subdomain for phpmyadmin, but
I wonder if it's possible to use FastCGI / PHP together with the
[i]alias[/i] directive.
Any help is appreciated, and if you'd like to see my complete config
files, just let me know.
Kind greetings from Austria!
Wolfgang
Posted at Nginx Forum:
http://forum.nginx.org/read.php?2,120664,120664#msg-120664
on 2010-08-17 15:16
on 2010-08-28 02:28
Hello, I hope it is allowed to bump a topic after 10 days without an answer. I think it's simply a bug within nginx. And I hope, it will be resolved at some time. Thanks for reading and have a nice weekend Wolfgang Posted at Nginx Forum: http://forum.nginx.org/read.php?2,120664,124489#msg-124489
on 2010-08-28 06:38
On Sat, Aug 28, 2010 at 7:27 AM, IPB_Refugee <nginx-forum@nginx.us> wrote: > Hello, > > I hope it is allowed to bump a topic after 10 days without an answer. > > I think it's simply a bug within nginx. And I hope, it will be resolved > at some time. > move the location ~ ^/test/(.+\.php)$ { ... } above location ~ /test/ { ... } (and make it "location /test/ { ... }" -- O< ascii ribbon campaign - stop html mail - www.asciiribbon.org
Please log in before posting. Registration is free and takes only a minute.
Existing account
(Switch to SSL-encrypted connection)
NEW: Do you have a Google/GoogleMail or Yahoo account? No registration required!
Log in with Google account | Log in with Yahoo account
Log in with Google account | Log in with Yahoo account
No account? Register here.