first commit

This commit is contained in:
Raven Scott
2022-05-31 18:28:17 -05:00
commit 754955ce15
119 changed files with 5925 additions and 0 deletions

View 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'
}
}
};