|
NAME/usr/local/etc/guacamole-server/guacd.conf - Configuration file for guacdDESCRIPTION/usr/local/etc/guacamole-server/guacd.conf is the configuration file for the Guacamole proxy daemon used by the Guacamole web application and framework, guacd. Use of this file is entirely optional, and all of its options can be specified from the command line when running guacd. If you provide both the guacd.conf file and command line options, the command line options will take precedence.SYNTAXguacd.conf is made up of sections, where each section contains a set of parameter/value pairs. The parameters available are dictated by the section in use, and parameters may only be specified within a section.The beginning of each section is denoted with a section name in brackets, and each section ends implicitly with the beginning of a new section, or at the end of the file.
Parameters within sections are written as a parameter name, followed by an equals sign, followed by the parameter value, all on one line. Comments may be placed anywhere, and consist of arbitrary text following a # symbol until end-of-line:
Beware that it is the combination of the section name with the parameter name that makes up the fully qualified name of a parameter. Each parameter absolutely must be placed only within its proper section, or guacd.conf will fail to be parsed, and guacd will not start. If special characters need to be placed within a parameter value, such as whitespace, #, ", or \, the entire value must be enclosed in double quotes, and each occurrence of " or \ within the value must be escaped with backslashes:
SERVER PARAMETERS
DAEMON PARAMETERS
SSL PARAMETERSIf guacd was built with SSL support, then connections between the web application and guacd can be encrypted if an SSL certificate and key file are given.When using a chain of certificates, you must append the additional certificates to your server certificate. This can be done easily with the standard cat command. Beware that the certificate for guacd must be the first certificate in the file.
EXAMPLE# # guacd.conf example # [daemon] pid_file = /var/run/guacd.pid [server] bind_host = localhost bind_port = 4822 [ssl] server_certificate = /usr/local/etc/ssl/certs/guacd.crt server_key = /usr/local/etc/ssl/private/guacd.key
Visit the GSP FreeBSD Man Page Interface. |