| 2 | |
| 3 | == munin == |
| 4 | |
| 5 | * 先前裝 munin 都還蠻方便的,可是最近在 debian testing 上測試,就一直出現 permission denied。今天終於知道原因了,因為新版的 munin 是產生在 /var/cache/munin/www 而非 /var/www/munin,此外在 apache 設定上預設也限制只能從 127.0.0.1 才能看。所以得把那行換掉。 |
| 6 | {{{ |
| 7 | #!diff |
| 8 | --- munin.org 2010-09-03 19:03:17.000000000 +0800 |
| 9 | +++ munin 2010-09-03 19:03:05.000000000 +0800 |
| 10 | @@ -1,7 +1,8 @@ |
| 11 | Alias /munin /var/cache/munin/www |
| 12 | <Directory /var/cache/munin/www> |
| 13 | Order allow,deny |
| 14 | - Allow from localhost 127.0.0.0/8 ::1 |
| 15 | +# Allow from localhost 127.0.0.0/8 ::1 |
| 16 | + Allow from all |
| 17 | Options None |
| 18 | }}} |