<div dir="ltr">I have succesfully installed Xymon, but just couldn't get the web interface working. I have included this in apache.conf: (any ideas what i'm missing??) Thanks for the help!<br><br><br>Alias /xymon/  "/home/xymon/server/www/"<br>
<Directory "/home/xymon/server/www"><br>    Options Indexes FollowSymLinks Includes MultiViews<br>    Order allow,deny<br>    Allow from all<br></Directory><br><br>ScriptAlias /xymon-cgi/ "/home/xymon/cgi-bin/"<br>
<Directory "/home/xymon/cgi-bin"><br>    AllowOverride None<br>    Options ExecCGI Includes<br>    Order allow,deny<br>    Allow from all<br></Directory><br><br><Directory /var/www/*><br>Options +ExecCGI<br>
AddHandler cgi-script .cgi<br></Directory><br><br>ScriptAlias /xymon-cgi/ "/home/xymon/cgi-bin/"<br><Directory "/home/xymon/cgi-bin"><br>    AllowOverride None<br>    Options ExecCGI Includes<br>
    Order allow,deny<br>    Allow from all<br></Directory><br><br><Directory /var/www/*><br>Options +ExecCGI<br>AddHandler cgi-script .cgi<br></Directory><br><br>ScriptAlias /xymon-seccgi/ "/home/xymon/cgi-secure/"<br>
<Directory "/home/xymon/cgi-secure"><br>    AllowOverride None<br>    Options ExecCGI Includes<br>    Order allow,deny<br>    Allow from all<br><br>    # Password file where users with access to these scripts are kept.<br>
    # Create it with "htpasswd -c /home/xymon/server/etc/xymonpasswd USERNAME"<br>    # Add more users / change passwords with "htpasswd /home/xymon/server/etc/xymonpasswd USERNAME"<br>    #<br>    # You can also use a group file to restrict admin access to members of a<br>
    # group, instead of anyone who is logged in. In that case you must setup<br>    # the "xymongroups" file, and change the "Require" settings to require<br>    # a specific group membership. See the Apache docs for more details.<br>
<br>    AuthUserFile /home/xymon/server/etc/xymonpasswd<br>    AuthGroupFile /home/xymon/server/etc/xymongroups<br>    AuthType Basic<br>    AuthName "Xymon Administration"<br><br>    # "valid-user" restricts access to anyone who is logged in.<br>
    Require valid-user<br><br>    # "group admins" restricts access to users who have logged in, AND<br>    # are members of the "admins" group in xymongroups.<br>    # Require group admins<br><br></Directory><br>
</div>