source: trunk/puppet/modules/cups_server/files/cupsd.conf @ 420

Last change on this file since 420 was 420, checked in by sebas, 15 years ago

archivos de configuracion

File size: 1.6 KB
Line 
1LogLevel warning
2SystemGroup lpadmin
3# Allow remote access
4Port 631
5Listen /var/run/cups/cups.sock
6# Enable printer sharing and shared printers.
7Browsing On
8BrowseOrder allow,deny
9BrowseAllow all
10BrowseAddress @LOCAL
11DefaultAuthType Basic
12<Location />
13  # Allow shared printing and remote administration...
14  Order allow,deny
15  Allow all
16</Location>
17<Location /admin>
18  Encryption Required
19  # Allow remote administration...
20  Order allow,deny
21  Allow all
22</Location>
23<Location /admin/conf>
24  AuthType Default
25  Require user @SYSTEM
26  # Allow remote access to the configuration files...
27  Order allow,deny
28  Allow all
29</Location>
30<Policy default>
31  <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>
32    Require user @OWNER @SYSTEM
33    Order deny,allow
34  </Limit>
35  <Limit CUPS-Add-Modify-Printer CUPS-Delete-Printer CUPS-Add-Modify-Class CUPS-Delete-Class CUPS-Set-Default>
36    AuthType Default
37    Require user @SYSTEM
38    Order deny,allow
39  </Limit>
40  <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>
41    AuthType Default
42    Require user @SYSTEM
43    Order deny,allow
44  </Limit>
45  <Limit CUPS-Authenticate-Job>
46    Require user @OWNER @SYSTEM
47    Order deny,allow
48  </Limit>
49  <Limit All>
50    Order deny,allow
51  </Limit>
52</Policy>
Note: See TracBrowser for help on using the repository browser.