No matter what I change in my cups configuration file, it just won't work. Every time I try to access the administration pages or add a new printer, I get a 403 forbidden error.
Please look at my current config file and tell me where I'm going wrong.:confused:
Be gentle, I'm fairly new to Linux.
Code:LogLevel info
SystemGroup sys root
#Allow remote access
Port 631
Listen /var/run/cups/cups.sock
Listen 127.0.0.1:631
Listen 192.168.1.100:631
Listen 192.168.1.101:631
Listen 192.168.1.102:631
#Enable printer sharing and shared printers.
ServerName 192.168.1.151
Browsing On
BrowseOrder allow,deny
BrowseAllow all
BrowseAddress 192.168.1.255
DefaultAuthType Basic
<Location />
# Allow shared printing...
Order allow,deny
Allow From 192.168.1.*
Allow From 127.0.0.1
Allow From localhost.localdomain
Allow all
</Location>
<Location /admin>
Encryption Required
# Restrict access to the admin pages...
Order allow,deny
Allow localhost
</Location>
<Location /admin/conf>
AuthType Default
#Require user @SYSTEM
# Restrict access to the configuration files...
Order allow,deny
Allow localhost
</Location>
<Policy default>
<Limit Send-Document Send-URI Hold-Job Release-Job Restart-Job Purge-Jobs Set-Job-Attributes Create-Job-Subscription Renew-Subscription Cancel-Subscription Get-Notifications Reprocess-Job Cancel-Current-Job Suspend-Current-Job Resume-Job CUPS-Move-Job>
Require user @OWNER @SYSTEM
Order deny,allow
</Limit>
<Limit CUPS-Add-Modify-Printer CUPS-Delete-Printer CUPS-Add-Modify-Class CUPS-Delete-Class CUPS-Set-Default>
AuthType Default
Require user @SYSTEM
Order deny,allow
Allow localhost
</Limit>
<Limit Pause-Printer Resume-Printer Enable-Printer Disable-Printer Pause-Printer-After-Current-Job Hold-New-Jobs Release-Held-New-Jobs Deactivate-Printer Activate-Printer Restart-Printer Shutdown-Printer Startup-Printer Promote-Job Schedule-Job-After CUPS-Accept-Jobs CUPS-Reject-Jobs>
AuthType Default
Require user @SYSTEM
Order deny,allow
</Limit>
<Limit Cancel-Job CUPS-Authenticate-Job>
Require user @OWNER @SYSTEM
Order deny,allow
</Limit>
<Limit All>
Order deny,allow
</Limit>
</Policy>
