On Thu, May 21, 2015 at 8:31 AM, Mark Felder <user-db141d317836@xymon.invalid> wrote:
On Wed, May 20, 2015, at 10:10, Asif Iqbal wrote:
ScriptAlias /xymon-cgi/ "/var/lib/xymon/cgi-bin/"
<Directory "/var/lib/xymon/cgi-bin">
AllowOverride None
Options ExecCGI FollowSymLinks Includes
<IfModule mod_authz_core.c>
# Apache 2.4+
Require all granted
</IfModule>
<IfModule !mod_authz_core.c>
Order deny,allow
Allow from all
</IfModule>
</Directory>
What if you add to your <Directory> for the two different cgi-bin
locations "SetHandler cgi-script" like this:
ScriptAlias /xymon-cgi/ "/var/lib/xymon/cgi-bin"
<Directory "/var/lib/xymon/cgi-bin">
SetHandler cgi-script
I added this line and restarted but that did not seem to help.
AllowOverride None
Options ExecCGI FollowSymLinks Includes
<IfModule mod_authz_core.c>
# Apache 2.4+
Require all granted
</IfModule>
<IfModule !mod_authz_core.c>
Order deny,allow
Allow from all
</IfModule>
</Directory>
--
Asif Iqbal
PGP Key: 0xE62693C5 KeyServer: pgp.mit.edu
A: Because it messes up the order in which people normally read text.
Q: Why is top-posting such a bad thing?