Need to run Nagios Web Interface on a different port

Hi,

During Nagios install we added the following piece of config to apache httpd.conf file and it runs on the regular port 80, now if I want to run this on a different port then what needs to changed to make it run on lets say port 8080.

I tried adding Virtual servers but was getting Forbidden 403 error.

#
# Nagios stuff

ScriptAlias /nagios/cgi-bin/ "/opt/local/sbin/nagios/"
<Directory "/opt/local/sbin/nagios">
    AllowOverride None
    Options ExecCGI
    Order allow,deny  
    Allow from all
    AuthName "Nagios Access"
    AuthType Basic
    AuthUserFile /opt/local/etc/nagios/htpasswd.users (for user/password auth)
    Require valid-user
</Directory>

Alias /nagios "/opt/local/share/nagios"
<Directory "/opt/local/share/nagios">
    Options None
    AllowOverride AuthConfig
    Order allow,deny
    Allow from all
</Directory>

# End Nagios stuff
#

Thanks,
Jacki

This line will not work:

 AuthUserFile /opt/local/etc/nagios/htpasswd.users (for user/password auth)

You can't put a comment like (for user/password auth) on a configuration line.

If you restart apache2 it will fail.

Please be complete when posting and make sure you post the correct information, thanks.