X-Git-Url: http://git.ipfire.org/?p=thirdparty%2Fcups.git;a=blobdiff_plain;f=doc%2Fhelp%2Fref-cupsd-conf.html.in;h=b22d3a304f529ac6392638a513147f26e11373b4;hp=64029b94cb984329cea896b7adf8948f0a88a7db;hb=178cb7369d104b95acb92929f36956a38765c84c;hpb=f11a948a02771f78f50b530880a0269d4b4f58eb diff --git a/doc/help/ref-cupsd-conf.html.in b/doc/help/ref-cupsd-conf.html.in index 64029b94c..b22d3a304 100644 --- a/doc/help/ref-cupsd-conf.html.in +++ b/doc/help/ref-cupsd-conf.html.in @@ -2,9 +2,11 @@ cupsd.conf + +

cupsd.conf

The /etc/cups/cupsd.conf file contains configuration directives that control how the server @@ -1964,6 +1966,24 @@ Directives inside /printers will override ones from +

LogDebugHistory

+ +

Examples

+ +
+LogDebugHistory 0
+LogDebugHistory 200
+
+ +

Description

+ +

When LogLevel is not set to +debug or debug2, the LogDebugHistory +directive specifies the number of debugging messages that are logged when an +error occurs during printing. The default is 200 messages. A value of 0 +disables debugging history entirely and is not recommended.

+ +

CUPS 1.1.15LogFilePerm

Examples

@@ -2712,6 +2732,37 @@ administrator email address is root@server, where HREF="#ServerName">ServerName.

+

CUPS 1.3.10ServerAlias

+ +

Examples

+ +
+ServerAlias althost
+ServerAlias althost.foo.com
+ServerAlias althost.bar.com
+ServerAlias *
+
+ +

Description

+ +

The ServerAlias directive specifies alternate names that the +server is known by. By default it contains a list of all aliases associated +with the ServerName. The special name +"*" can be used to allow any hostname when accessing CUPS via an external +network interfaces.

+ +
Note + +

The ServerAlias directive is used for HTTP Host header +validation when clients connect to the scheduler from external interfaces. +Using the special name "*" can expose your system to known browser-based +DNS rebinding attacks, even when accessing sites through a firewall. If the +auto-discovery of alternate names does not work, we recommend listing each +alternate name with a ServerAlias directive instead of using "*".

+ +
+ +

ServerBin

Examples