mirror of
https://github.com/linuxserver/gclient.git
synced 2026-02-20 02:54:19 +08:00
27 lines
403 B
JavaScript
27 lines
403 B
JavaScript
const clientOptions = {
|
|
crypt: {
|
|
cypher: 'AES-256-CBC',
|
|
key: 'LSIOGCKYLSIOGCKYLSIOGCKYLSIOGCKY',
|
|
},
|
|
log: {
|
|
level: 'NORMAL',
|
|
},
|
|
};
|
|
|
|
const connectionOptions = {
|
|
connection: {
|
|
type: 'rdp',
|
|
settings: {
|
|
hostname: '127.0.0.1',
|
|
port: '3389',
|
|
security: 'any',
|
|
'ignore-cert': true,
|
|
},
|
|
},
|
|
};
|
|
|
|
module.exports = {
|
|
clientOptions,
|
|
connectionOptions,
|
|
};
|