forked from PippCandy/autoinstallers
first commit
This commit is contained in:
28
install/osjs/osjs_server_config.js
Normal file
28
install/osjs/osjs_server_config.js
Normal file
@ -0,0 +1,28 @@
|
||||
//
|
||||
// This is the server configuration tree.
|
||||
// Guide: https://manual.os-js.org/v3/config/#server
|
||||
// Complete config tree: https://github.com/os-js/osjs-server/blob/master/sr$
|
||||
//
|
||||
|
||||
const path = require('path');
|
||||
const root = path.resolve(__dirname, '../../');
|
||||
|
||||
module.exports = {
|
||||
root,
|
||||
port: CUSTOM,
|
||||
public: path.resolve(root, 'dist'),
|
||||
vfs: { root: '/home' },
|
||||
|
||||
xterm: {
|
||||
ssh: {
|
||||
// Custom hostname
|
||||
hostname: 'localhost',
|
||||
|
||||
// Custom port
|
||||
args: '-p 22'
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
};
|
Reference in New Issue
Block a user