mirror of
https://github.com/Ylianst/MeshCentral.git
synced 2025-03-09 15:40:18 +00:00
Fixed AV status on Windows Server, started work on session recording
This commit is contained in:
parent
aca7523d4f
commit
ba78910fc9
9 changed files with 61 additions and 20 deletions
|
@ -71,6 +71,7 @@ function CreateMeshCentralServer(config, args) {
|
|||
obj.datapath = obj.path.join(__dirname, '../../meshcentral-data');
|
||||
obj.filespath = obj.path.join(__dirname, '../../meshcentral-files');
|
||||
obj.backuppath = obj.path.join(__dirname, '../../meshcentral-backup');
|
||||
obj.recordpath = obj.path.join(__dirname, '../../meshcentral-recordings');
|
||||
if (obj.fs.existsSync(obj.path.join(__dirname, '../../meshcentral-web/views'))) { obj.webViewsPath = obj.path.join(__dirname, '../../meshcentral-web/views'); } else { obj.webViewsPath = obj.path.join(__dirname, 'views'); }
|
||||
if (obj.fs.existsSync(obj.path.join(__dirname, '../../meshcentral-web/public'))) { obj.webPublicPath = obj.path.join(__dirname, '../../meshcentral-web/public'); } else { obj.webPublicPath = obj.path.join(__dirname, 'public'); }
|
||||
} else {
|
||||
|
@ -78,6 +79,7 @@ function CreateMeshCentralServer(config, args) {
|
|||
obj.datapath = obj.path.join(__dirname, '../meshcentral-data');
|
||||
obj.filespath = obj.path.join(__dirname, '../meshcentral-files');
|
||||
obj.backuppath = obj.path.join(__dirname, '../meshcentral-backups');
|
||||
obj.recordpath = obj.path.join(__dirname, '../meshcentral-recordings');
|
||||
if (obj.fs.existsSync(obj.path.join(__dirname, '../meshcentral-web/views'))) { obj.webViewsPath = obj.path.join(__dirname, '../meshcentral-web/views'); } else { obj.webViewsPath = obj.path.join(__dirname, 'views'); }
|
||||
if (obj.fs.existsSync(obj.path.join(__dirname, '../meshcentral-web/public'))) { obj.webPublicPath = obj.path.join(__dirname, '../meshcentral-web/public'); } else { obj.webPublicPath = obj.path.join(__dirname, 'public'); }
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue