Guest User

cupsd.conf modified

a guest
Jul 21st, 2015
270
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.37 KB | None | 0 0
  1. #
  2. # "$Id: cupsd.conf.in 9407 2010-12-09 21:24:51Z mike $"
  3. #
  4. # Sample configuration file for the CUPS scheduler.  See "man cupsd.conf" for a
  5. # complete description of this file.
  6. #
  7.  
  8. # Deactivate CUPS' internal logrotating, as we provide a better one, especially
  9. # LogLevel debug2 gets usable now
  10. MaxLogSize 0
  11.  
  12. # Only listen for connections from the local machine.
  13. Port 631
  14. Listen /var/run/cups/cups.sock
  15.  
  16. # Web interface setting...
  17. WebInterface Yes
  18.  
  19. # Restrict access to the server...
  20. <Location />
  21.   Order allow,deny
  22.   #Allow localhost
  23.   Allow all
  24. </Location>
  25.  
  26. # Set the default printer/job policies...
  27. DefaultPolicy default
  28. <Policy default>
  29.   JobPrivateAccess all
  30.   JobPrivateValues none
  31.   SubscriptionPrivateAccess all
  32.   SubscriptionPrivateValues none
  33.  
  34. #All administration operations require an administrator to authenticate...
  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 CUPS-Move-Job>
  41.       Order deny,allow
  42.   </Limit>
  43.  
  44.   <Limit All>
  45.       Order deny,allow
  46. #      Allow from @LOCAL
  47.   </Limit>
  48.  
  49. </Policy>
  50.  
  51. # Document files of completed, canceled, or aborted print jobs can be retained
  52. PreserveJobFiles Yes
  53. MaxJobs 20
  54.  
  55. #
  56. # End of "$Id: cupsd.conf.in 9407 2010-12-09 21:24:51Z mike $".
  57. #
Advertisement
Add Comment
Please, Sign In to add comment