cups-files.conf - file and directory configuration file for cups
The
cups-files.conf file configures the files and directories used by the CUPS scheduler,
cupsd(8).
It is normally located in the
/etc/cups directory.
Each line in the file can be a configuration directive, a blank line, or a comment.
Configuration directives typically consist of a name and zero or more values separated by whitespace.
The configuration directive name and values are case-insensitive.
Comment lines start with the # character.
The following directives are understood by
cupsd(8):
- AccessLog
- AccessLog filename
- AccessLog stderr
- AccessLog syslog
- Defines the access log filename.
Specifying a blank filename disables access log generation.
The value "stderr" causes log entries to be sent to the standard error file when the scheduler is running in the foreground, or to the system log daemon when run in the background.
The value "syslog" causes log entries to be sent to the system log daemon.
The server name may be included in filenames using the string "%s", for example:
AccessLog /var/log/cups/%s-access_log
The default is "/var/log/cups/access_log".
- CacheDir directory
- Specifies the directory to use for long-lived temporary (cache) files.
The default is "/var/spool/cups/cache" or "/var/cache/cups" depending on the platform.
- ConfigFilePerm mode
- Specifies the permissions for all configuration files that the scheduler writes.
The default is "0644" on macOS and "0640" on all other operating systems.
Note: The permissions for the printers.conf file are currently masked to only allow access from the scheduler user (typically root).
This is done because printer device URIs sometimes contain sensitive authentication information that should not be generally known on the system.
There is no way to disable this security feature.
- CreateSelfSignedCerts yes
- CreateSelfSignedCerts no
- Specifies whether the scheduler automatically creates self-signed certificates for client connections using TLS.
The default is yes.
- DataDir path
- Specifies the directory where data files can be found.
The default is usually "/usr/share/cups".
- DocumentRoot directory
- Specifies the root directory for the CUPS web interface content.
The default is usually "/usr/share/doc/cups".
- ErrorLog
- ErrorLog filename
- ErrorLog stderr
- ErrorLog syslog
- Defines the error log filename.
Specifying a blank filename disables error log generation.
The value "stderr" causes log entries to be sent to the standard error file when the scheduler is running in the foreground, or to the system log daemon when run in the background.
The value "syslog" causes log entries to be sent to the system log daemon.
The server name may be included in filenames using the string "%s", for example:
ErrorLog /var/log/cups/%s-error_log
The default is "/var/log/cups/error_log".
- FatalErrors none
- FatalErrors all -kind [ ... -kind ]
- FatalErrors kind [ ... kind ]
- Specifies which errors are fatal, causing the scheduler to exit.
The default is "config".
The kind strings are:
- none
- No errors are fatal.
- all
- All of the errors below are fatal.
- browse
- Browsing initialization errors are fatal, for example failed connections to the DNS-SD daemon.
- config
- Configuration file syntax errors are fatal.
- listen
- Listen or Port errors are fatal, except for IPv6 failures on the loopback or "any" addresses.
- log
- Log file creation or write errors are fatal.
- permissions
- Bad startup file permissions are fatal, for example shared TLS certificate and key files with world-read permissions.
- Group group-name-or-number
- Specifies the group name or ID that will be used when executing external programs.
The default group is operating system specific but is usually "lp" or "nobody".