Changes between Version 4 and Version 5 of Authentication
- Timestamp:
- 11/07/13 04:51:31 (7 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Authentication
v4 v5 25 25 When using the "{{{file_auth}}}" module, one must specify the extra command line argument "{{{--password-file=FILENAME}}}" to point to the authentication data. 26 26 27 This file must contain one user per line using the format: 27 When this file is used without the [/wiki/ProxyServer Proxy Server], one can simply place the password to use directly in that file. 28 29 30 == File Authentication with the [/wiki/ProxyServer Proxy Server] == 31 32 When used with the proxy server, the password file should contain one user per line using the format: 28 33 {{{ 29 34 USERNAME|PASSWORD|UID|GID|SESSION_URI|ENV_VARS|SESSION_OPTIONS 30 35 }}} 36 31 37 Details: 38 * {{{USERNAME}}} and {{{PASSWORD}}} are used for authentication 39 * {{{UID}}} and {{{GID}}} are used for the new proxy process (and can be set to {{{nobody}}}) 32 40 * {{{SESSION_URI}}} is the usual xpra connection string of the actual target session, ie: 33 41 {{{ … … 40 48 * {{{ENV_VARS}}} is an optional attribute which can contain ";" separated name-value pairs which will affect the environment of the new process spawned after authentication. 41 49 * {{{SESSION_OPTIONS}}} is an optional attribute which can contain ";" separated name-value pairs which will override the client's connection settings and apply to the connection between the proxy and the real server only. 42 43 44 Note: for backwards compatibility, the {{{file_auth}}} module also supports a single password on a single line in the password file. (this is deprecated)45 46 47