12 messages in ru.sysoev.nginxRe: Help with rewrite rules
FromSent OnAttachments
Šime RamovFeb 13, 2007 1:03 pm 
Igor SysoevFeb 14, 2007 6:08 am 
Šime RamovFeb 14, 2007 1:03 pm 
Šime RamovFeb 14, 2007 1:06 pm 
Šime RamovFeb 14, 2007 1:24 pm 
Tomislav FilipčićFeb 14, 2007 2:02 pm 
Šime RamovFeb 15, 2007 3:50 am 
Tomislav FilipčićFeb 15, 2007 4:29 am 
Šime RamovFeb 15, 2007 4:58 am 
Tomislav FilipčićFeb 15, 2007 6:59 am 
Šime RamovFeb 15, 2007 7:29 am 
Šime RamovFeb 20, 2007 10:09 am 
Actions with this message:
Paste this link in email or IM:
Paste this link in email or IM:
Atom feed for this thread
Paste this URL into your reader:
Subject:Re: Help with rewrite rulesActions...
From:Tomislav Filipčić (tomi@public.gmane.org)
Date:Feb 14, 2007 2:02:13 pm
List:ru.sysoev.nginx

Šime Ramov wrote:

On 2/14/07, Šime Ramov <hi-8jQXqWa/aHVB@public.gmane.org> wrote:

Maybe the password is wrong, I'll try with simpler one and rehash it, I'll post results here.

No, the username/password is not the problem, the same thing happens. I get 401 status codes in the access log (and few 499)...

So, everything works (PHP is up via FCGI, phpinfo() works, phpMyID seem to work except authentication etc.), but when I get to the login page (basic http authentication) and enter username and password, the page just stalls.

And according to the contents of the phpMyID htacces file (previously posted) that's the missing link, so I just need that last step.

Hi Šime (domaći? :))

It works for me. I just set it up and was able to log into http://ma.gnolia.com/ (a openID enabled website) without any problems. Here is my nginx configuration. It could be a problem with your PHP installation.

server { listen 63.99.9.80; server_name test.mahune.org;

access_log /var/log/nginx/openid.access_log main; error_log /var/log/nginx/openid.error_log;

root /var/www/openid.mahune.org; index index.php;

location ~ .*\.php?$ { include /etc/nginx/fastcgi_params; fastcgi_pass 127.0.0.1:1026; fastcgi_param PHP_AUTH_DIGEST $http_authorization; fastcgi_param SCRIPT_FILENAME /var/www/openid.mahune.org$fastcgi_script_name; } }