On 16 September 2010 05:51, Charles E Johnson Sr
<cejohnso...@cableone.net> wrote:
>
> What is the URL to the web interface? I read through the docs, searched
> the archives & even tried Google, but didn't see it anywhere.
>
> Thanx,
>
> Ed
>
>
> ------------------------------------------------------------------------------
> Start uncovering the many advantages of virtual appliances
> and start using them to simplify application deployment and
> accelerate your shift to cloud computing.
> http://p.sf.net/sfu/novell-sfdev2dev
> _______________________________________________
> BackupPC-users mailing list
> BackupPC-users@lists.sourceforge.net
> List:    https://lists.sourceforge.net/lists/listinfo/backuppc-users
> Wiki:    http://backuppc.wiki.sourceforge.net
> Project: http://backuppc.sourceforge.net/

Charles, im very new to this but maybe able to help...

Did you for details for setting up Apache?
http://backuppc.sourceforge.net/faq/BackupPC.html#step_9__cgi_interface

My Apache httpd.conf has the following added...
<VirtualHost *:80>
   ServerName <my domain name>
   DocumentRoot /usr/share/BackupPC/sbin
   ScriptAlias /backuppc/cgi-bin/ /usr/share/BackupPC/bin
   Alias /backuppc /usr/share/BackupPC/sbin

   ErrorLog /home/www/logs/<my domain name>.err
   CustomLog /home/www/logs/<my domain name>.log common
</VirtualHost>

And, in httpd/conf.d dir I have a file called BackupPC.conf...
<Directory       /usr/share/BackupPC/sbin/>
# BackupPC requires valid authentication in order for the web interface to
# function properly.  One can view the web interface without authentication
# though all functionality is disabled.
#
# htpasswd -c /etc/BackupPC/apache.users yourusername

order deny,allow
allow from all
AuthType Basic
AuthUserFile /etc/BackupPC/apache.users   <---- you need to make this
file & add users who should have access with htpasswd
AuthName "BackupPC

require valid-user
</Directory>

Alias           /BackupPC/images        /usr/share/BackupPC/html/
ScriptAlias     /BackupPC               /usr/share/BackupPC/sbin/BackupPC_Admin



fyi - im running CentOS 5 and installed from YUM

------------------------------------------------------------------------------
Start uncovering the many advantages of virtual appliances
and start using them to simplify application deployment and
accelerate your shift to cloud computing.
http://p.sf.net/sfu/novell-sfdev2dev
_______________________________________________
BackupPC-users mailing list
BackupPC-users@lists.sourceforge.net
List:    https://lists.sourceforge.net/lists/listinfo/backuppc-users
Wiki:    http://backuppc.wiki.sourceforge.net
Project: http://backuppc.sourceforge.net/

Reply via email to