]> git.ipfire.org Git - thirdparty/cups.git/blob - conf/cupsd.conf.in
Load cups into easysw/current.
[thirdparty/cups.git] / conf / cupsd.conf.in
1 #
2 # "$Id: cupsd.conf.in 6268 2007-02-12 02:46:11Z mike $"
3 #
4 # Sample configuration file for the Common UNIX Printing System (CUPS)
5 # scheduler. See "man cupsd.conf" for a complete description of this
6 # file.
7 #
8
9 # Log general information in error_log - change "info" to "debug" for
10 # troubleshooting...
11 LogLevel info
12
13 # Administrator user group...
14 SystemGroup @CUPS_SYSTEM_GROUPS@
15 @CUPS_SYSTEM_AUTHKEY@
16
17 # Only listen for connections from the local machine.
18 Listen localhost:@DEFAULT_IPP_PORT@
19 @CUPS_LISTEN_DOMAINSOCKET@
20
21 # Show shared printers on the local network.
22 Browsing On
23 BrowseOrder allow,deny
24 BrowseAllow all
25
26 # Default authentication type, when authentication is required...
27 DefaultAuthType Basic
28
29 # Restrict access to the server...
30 <Location />
31 Order allow,deny
32 Allow localhost
33 </Location>
34
35 # Restrict access to the admin pages...
36 <Location /admin>
37 @ENCRYPTION_REQUIRED@
38 Order allow,deny
39 Allow localhost
40 </Location>
41
42 # Restrict access to configuration files...
43 <Location /admin/conf>
44 AuthType Basic
45 Require user @SYSTEM
46 Order allow,deny
47 Allow localhost
48 </Location>
49
50 # Set the default printer/job policies...
51 <Policy default>
52 # Job-related operations must be done by the owner or an adminstrator...
53 <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>
54 Require user @OWNER @SYSTEM
55 Order deny,allow
56 </Limit>
57
58 # All administration operations require an adminstrator to authenticate...
59 <Limit Pause-Printer Resume-Printer Set-Printer-Attributes 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-Add-Printer CUPS-Delete-Printer CUPS-Add-Class CUPS-Delete-Class CUPS-Accept-Jobs CUPS-Reject-Jobs CUPS-Set-Default>
60 AuthType Basic
61 Require user @SYSTEM
62 Order deny,allow
63 </Limit>
64
65 # Only the owner or an administrator can cancel or authenticate a job...
66 <Limit Cancel-Job CUPS-Authenticate-Job>
67 Require user @OWNER @SYSTEM
68 Order deny,allow
69 </Limit>
70
71 <Limit All>
72 Order deny,allow
73 </Limit>
74 </Policy>
75
76 #
77 # End of "$Id: cupsd.conf.in 6268 2007-02-12 02:46:11Z mike $".
78 #