atom feed15 messages in ru.sysoev.nginxRe: satisfy problem
FromSent OnAttachments
lhmwzyApr 7, 2011 8:51 am 
Francis DalyApr 7, 2011 10:00 am 
Thomas LoveApr 7, 2011 11:27 am 
lhmwzyApr 7, 2011 4:51 pm 
lhmwzyApr 7, 2011 4:52 pm 
Oleksandr V. Typlyns'kyiApr 7, 2011 5:08 pm 
lhmwzyApr 7, 2011 9:16 pm 
lhmwzyApr 7, 2011 9:53 pm 
Igor SysoevApr 11, 2011 3:11 am.Other
Igor SysoevApr 11, 2011 3:18 am.Other
lhmwzyApr 11, 2011 7:49 am 
lhmwzyApr 11, 2011 7:50 am 
lhmwzyApr 11, 2011 8:00 am 
ylshjxApr 11, 2011 7:19 pm 
ylshjxApr 11, 2011 7:28 pm 
Subject:Re: satisfy problem
From:lhmwzy (lhm@gmail.com)
Date:Apr 7, 2011 9:53:33 pm
List:ru.sysoev.nginx

my conf is:

server { listen 80; server_name 10.66.23.112; #charset koi8-r; more_set_headers "Server:lhmwzy web server"; access_log off; root /usr/www/112/www; index index.php index.html index.htm; location ^~ /phpmyadmin/ { satisfy any; #allow 10.68.136.241; allow 10.68.9.210; deny all; auth_basic "passwd"; auth_basic_user_file ksadminpasswd; location ~ \.php$ { fastcgi_pass 127.0.0.1:10080; include fastcgi; fastcgi_index index.php; } }

location ~ \.php$ { fastcgi_pass 127.0.0.1:10080; include fastcgi; fastcgi_index index.php; }

error_page 401 403 /error/401.html; error_page 404 /error/404.html; error_page 500 502 503 504 = /error/50x.html; }

When access phpmyadmin from 10.68.136.241, nginx can not show the /error/401.html,but the default 401 error_page.