]> git.ipfire.org Git - thirdparty/cups.git/blob - conf/cupsd.conf.in
Update dependencies.
[thirdparty/cups.git] / conf / cupsd.conf.in
1 #
2 # Configuration file for the CUPS scheduler. See "man cupsd.conf" for a
3 # complete description of this file.
4 #
5
6 # Log general information in error_log - change "@CUPS_LOG_LEVEL@" to "debug"
7 # for troubleshooting...
8 LogLevel @CUPS_LOG_LEVEL@
9 @CUPS_PAGE_LOG_FORMAT@
10
11 # Only listen for connections from the local machine.
12 Listen localhost:@DEFAULT_IPP_PORT@
13 @CUPS_LISTEN_DOMAINSOCKET@
14
15 # Show shared printers on the local network.
16 Browsing On
17 BrowseLocalProtocols @CUPS_BROWSE_LOCAL_PROTOCOLS@
18
19 # Default authentication type, when authentication is required...
20 DefaultAuthType Basic
21
22 # Web interface setting...
23 WebInterface @CUPS_WEBIF@
24
25 # Restrict access to the server...
26 <Location />
27 Order allow,deny
28 </Location>
29
30 # Restrict access to the admin pages...
31 <Location /admin>
32 Order allow,deny
33 </Location>
34
35 # Restrict access to configuration files...
36 <Location /admin/conf>
37 AuthType Default
38 Require user @SYSTEM
39 Order allow,deny
40 </Location>
41
42 # Set the default printer/job policies...
43 <Policy default>
44 # Job/subscription privacy...
45 JobPrivateAccess default
46 JobPrivateValues default
47 SubscriptionPrivateAccess default
48 SubscriptionPrivateValues default
49
50 # Job-related operations must be done by the owner or an administrator...
51 <Limit Create-Job Print-Job Print-URI Validate-Job>
52 Order deny,allow
53 </Limit>
54
55 <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 Cancel-My-Jobs Close-Job CUPS-Move-Job CUPS-Get-Document>
56 Require user @OWNER @SYSTEM
57 Order deny,allow
58 </Limit>
59
60 # All administration operations require an administrator to authenticate...
61 <Limit CUPS-Add-Modify-Printer CUPS-Delete-Printer CUPS-Add-Modify-Class CUPS-Delete-Class CUPS-Set-Default CUPS-Get-Devices>
62 AuthType Default
63 Require user @SYSTEM
64 Order deny,allow
65 </Limit>
66
67 # All printer operations require a printer operator to authenticate...
68 <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 Cancel-Jobs CUPS-Accept-Jobs CUPS-Reject-Jobs>
69 AuthType Default
70 Require user @CUPS_DEFAULT_PRINTOPERATOR_AUTH@
71 Order deny,allow
72 </Limit>
73
74 # Only the owner or an administrator can cancel or authenticate a job...
75 <Limit Cancel-Job CUPS-Authenticate-Job>
76 Require user @OWNER @CUPS_DEFAULT_PRINTOPERATOR_AUTH@
77 Order deny,allow
78 </Limit>
79
80 <Limit All>
81 Order deny,allow
82 </Limit>
83 </Policy>
84
85 # Set the authenticated printer/job policies...
86 <Policy authenticated>
87 # Job/subscription privacy...
88 JobPrivateAccess default
89 JobPrivateValues default
90 SubscriptionPrivateAccess default
91 SubscriptionPrivateValues default
92
93 # Job-related operations must be done by the owner or an administrator...
94 <Limit Create-Job Print-Job Print-URI Validate-Job>
95 AuthType Default
96 Order deny,allow
97 </Limit>
98
99 <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 Cancel-My-Jobs Close-Job CUPS-Move-Job CUPS-Get-Document>
100 AuthType Default
101 Require user @OWNER @SYSTEM
102 Order deny,allow
103 </Limit>
104
105 # All administration operations require an administrator to authenticate...
106 <Limit CUPS-Add-Modify-Printer CUPS-Delete-Printer CUPS-Add-Modify-Class CUPS-Delete-Class CUPS-Set-Default>
107 AuthType Default
108 Require user @SYSTEM
109 Order deny,allow
110 </Limit>
111
112 # All printer operations require a printer operator to authenticate...
113 <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 Cancel-Jobs CUPS-Accept-Jobs CUPS-Reject-Jobs>
114 AuthType Default
115 Require user @CUPS_DEFAULT_PRINTOPERATOR_AUTH@
116 Order deny,allow
117 </Limit>
118
119 # Only the owner or an administrator can cancel or authenticate a job...
120 <Limit Cancel-Job CUPS-Authenticate-Job>
121 AuthType Default
122 Require user @OWNER @CUPS_DEFAULT_PRINTOPERATOR_AUTH@
123 Order deny,allow
124 </Limit>
125
126 <Limit All>
127 Order deny,allow
128 </Limit>
129 </Policy>