Gentoo Archives: gentoo-user

From: Daniel Frey <djqfrey@×××××.com>
To: gentoo-user@l.g.o
Subject: [gentoo-user] Re: Smokeping: images broken?
Date: Sat, 24 Sep 2016 19:24:05
Message-Id: c9a730f6-9c28-d850-d409-a6aac016110e@gmail.com
In Reply to: [gentoo-user] Smokeping: images broken? by Daniel Frey
1 On 09/24/2016 08:25 AM, Daniel Frey wrote:
2 > Are there any smokeping users?
3 >
4 > I did an update to apache, mod_perl, and smokeping, having to unmask
5 > things so they build correctly... and now all graphs are broken links.
6 >
7 > I had to keyword mod_perl and smokeping to get everything to build properly.
8 >
9 > Has anyone experienced this and know how to fix it?
10 >
11 > Dan
12 >
13
14 Now that I had some time to look into this, I discovered apache was
15 denying access to a Alias'ed directory.
16
17 I had to edit /etc/apache2/modules.d/79_smokeping.conf and change:
18
19 Order deny,allow
20 Deny from all
21 Allow from 127.0.0.1
22
23 to
24
25 Require ip 127.0.0.1
26 Require ip <my subnet>
27
28 ...and now it works.
29
30 Dan