Jag har pillat lite med CUPS idag men det är en massa problem med anslutningen till webbinterfacet. Jag har ändrat i cupsd.conf så att noder i det lokala nätverket kan komma åt sidorna. Men när man ska konfigurera något försöker den byta till https-protokollet vilket inte alls fungerar. CUPSd stängs då av
Kod: Markera allt
root@compton:/etc/cups# /etc/init.d/cups status
Status of Common Unix Printing System: cupsd is not running but /var/run/cups/cupsd.pid exists.
Kod: Markera allt
# Administrator user group...
SystemGroup lpadmin
# Only listen for connections from the local machine.
Listen localhost:631
Listen 192.168.0.2:631
Listen /var/run/cups/cups.sock
# Show shared printers on the local network.
Browsing On
BrowseOrder allow,deny
BrowseAllow all
BrowseAddress @LOCAL
# Default authentication type, when authentication is required...
DefaultAuthType Basic
# Restrict access to the server...
<Location />
Order allow,deny
Allow @LOCAL
</Location>
# Restrict access to the admin pages...
<Location /admin>
Encryption Required
Order allow,deny
Allow @LOCAL
</Location>
# Restrict access to configuration files...
<Location /admin/conf>
AuthType Default
Require user @SYSTEM
Order allow,deny
Allow @LOCAL
</Location>
