Advertisement
Guest User

cupsd.conf

a guest
Jul 21st, 2015
265
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.69 KB | None | 0 0
  1. # Sample configuration file for the CUPS scheduler.  See "man cupsd.conf" for a
  2. # complete description of this file.
  3.  
  4. MaxLogSize 0
  5.  
  6. Port 631
  7. Listen /var/run/cups/cups.sock
  8.  
  9. WebInterface Yes
  10.  
  11. # Restrict access to the server...
  12. <Location />
  13.   Order allow,deny
  14.   Allow all
  15. </Location>
  16.  
  17. # Set the default printer/job policies...
  18. DefaultPolicy default
  19. <Policy default>
  20.   JobPrivateAccess all
  21.   JobPrivateValues none
  22.   SubscriptionPrivateAccess all
  23.   SubscriptionPrivateValues none
  24.  
  25.   <Limit All>
  26.       Order deny,allow
  27.       Allow from @LOCAL
  28.   </Limit>
  29.  
  30. </Policy>
  31.  
  32. # Document files of completed, canceled, or aborted print jobs can be retained
  33. PreserveJobFiles Yes
  34. MaxJobs 20
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement