Add README, licences, authors and sample configuration files.
This commit is contained in:
58
config/guacamole/guacamole.properties
Normal file
58
config/guacamole/guacamole.properties
Normal file
@@ -0,0 +1,58 @@
|
||||
# Interval in seconds for fetching configuration from Wallix.
|
||||
# If not specified, 60 seconds
|
||||
wallix-sync-interval: 30
|
||||
|
||||
# URL to connect to Wallix Bastion API
|
||||
wallix-url: https://<IP or HOSTNAME>/api
|
||||
|
||||
# Username for connection to Wallix API
|
||||
wallix-user:
|
||||
|
||||
# Authentication key for API calls
|
||||
wallix-auth-key:
|
||||
|
||||
# Prefix that will be used to construct usernames when connecting to Wallix.
|
||||
# I.e : for an Active Directory user EXAMPLE\john, you must use the value EXAMPLE\\
|
||||
wallix-username-prefix: MYDOMAIN\\
|
||||
|
||||
# Suffix that will be used to construct usernames when connecting to Wallix.
|
||||
# I.e : following the previous example, for an Active Directory user EXAMPLE\john,
|
||||
# if EXAMPLE\\ is the prefix, then john is the suffix.
|
||||
#
|
||||
# Unless the same account is used to connect Wallix for all Guacamole users, a token
|
||||
# like ${GUAC_USERNAME} should be used, so that usernames are set dynamically when
|
||||
# users connect to Guacamole.
|
||||
wallix-username-suffix: ${GUAC_USERNAME}
|
||||
|
||||
# A password that must be used for all connections to Wallix. Until the same account
|
||||
# is used for all Guacamole users or all users share the same password, a token like
|
||||
# ${GUAC_PASSWORD} should be used.
|
||||
wallix-user-password: ${GUAC_PASSWORD}
|
||||
|
||||
# Hostname or IP of Wallix server, guacd will connect.
|
||||
wallix-connection-host: <Hostname or IP>
|
||||
|
||||
# MariaDB server IP address or hostname
|
||||
# Default : localhost
|
||||
mysql-hostname: localhost
|
||||
|
||||
# MariaDB server port
|
||||
# Default : 3306
|
||||
mysql-port: 3306
|
||||
|
||||
# MariaDB database name
|
||||
mysql-database: guacamole_db
|
||||
|
||||
# MariaDB username
|
||||
mysql-username: guacamole_user
|
||||
|
||||
# MariaDB user's password
|
||||
mysql-password: some_password
|
||||
|
||||
# Driver to use. For now only MariaDB is supported and using any other value can prevent
|
||||
# extension from starting.
|
||||
mysql-driver: mariadb
|
||||
|
||||
# Some version on MariaDB driver will require SSL by default. It is a good idea, but we disable
|
||||
# encryption if not needed (i.e. : database is on the same host)
|
||||
mysql-ssl-mode: disabled
|
||||
Reference in New Issue
Block a user