なんて言ったらいいのかわからないけど、 外部からのアクセスは、Basic認証(または、Digest認証など)にした localhost(127.0.0.1)からのアクセスは、認証ナシにしたい などという要望があった。 まあ、具体的には、Apache に以下のような設定をしていたら、 munin が server-status をとりにいけません!という状態になってたんだけど。 <VirtualHost *:80> ServerName hoge.example.com DocumentRoot /path/to/html # 外部からのアクセスは認証が必要 <Location /> AuthUserFile /path/to/.htpasswd AuthName "Input ID and Password." AuthType Basic require valid-user </Loc