Guest User

cupsd.conf 3

a guest
Jul 21st, 2015
238
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.07 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.  
  5. # Deactivate CUPS' internal logrotating, as we provide a better one, especially
  6. # LogLevel debug2 gets usable now
  7. MaxLogSize 0
  8.  
  9. # Only listen for connections from the local machine.
  10. Port 631
  11. Listen /var/run/cups/cups.sock
  12.  
  13. # Web interface setting...
  14. WebInterface Yes
  15.  
  16. # Restrict access to the server...
  17. <Location />
  18.   Order allow,deny
  19.   Allow from All
  20. </Location>
  21.  
  22. # Set the default printer/job policies...
  23. DefaultPolicy default
  24. <Policy default>
  25.   JobPrivateAccess all
  26.   JobPrivateValues none
  27.   SubscriptionPrivateAccess all
  28.   SubscriptionPrivateValues none
  29.  
  30. #All administration operations require an administrator to authenticate...
  31.   <Limit CUPS-Move-Job>
  32.       AuthType None
  33.       Order deny,allow
  34.       Allow from All
  35.   </Limit>
  36.  
  37.   <Limit All>
  38.       Order deny,allow
  39.       Allow from All
  40.   </Limit>
  41.  
  42. </Policy>
  43.  
  44. # Document files of completed, canceled, or aborted print jobs can be retained
  45. PreserveJobFiles Yes
  46. MaxJobs 20
Advertisement
Add Comment
Please, Sign In to add comment