Hi all,
I have RH9 and cups. Whenever a client connects to the web management page
to erase a job it gets this error:
Error: client-error-forbidden
However this started out of nowhere as it worked in the past, on the
fly!....
Following is my exconfig file for cups.
................................
<Location /admin>
#
# You definitely will want to limit access to the administration functions.
# The default configuration requires a local connection from a user who
# is a member of the system group to do any admin tasks. You can change
# the group name using the SystemGroup directive.
#
AuthType Basic
AuthClass System
## Restrict access to local domain
Order Deny,Allow
Deny From All
Allow From 127.0.0.1
#Encryption Required
</Location>
#
# End of "$Id: cupsd.conf.in,v 1.8 2002/12/13 16:23:54 mike Exp $".
#
<Location /printers/HP-LJ1220>
Order Deny,Allow
Deny From All
Allow From 10.0.0.0/24
Allow From 127.0.0.1
AuthType None
</Location>
<Location />
Order Deny,Allow
Deny From All
Allow From 10.0.0.0/24
Allow From 127.0.0.1
</Location>
<Location /jobs>
Order Deny, Allow
Deny From ALL
Allow From 10.0.0.0/24
Allow From 127.0.0.1
Require valid-user
</Location>
Browsing On
BrowseProtocols cups
BrowseOrder Deny,Allow
BrowseAllow from 10.0.0.0/24
Listen 127.0.0.1:631
Listen 10.0.0.11:631
|