Linux server19.dn-server.com 3.10.0-962.3.2.lve1.5.88.el7.x86_64 #1 SMP Fri Sep 26 14:06:42 UTC 2025 x86_64
LiteSpeed
Server IP : 46.209.20.154 & Your IP : 216.73.217.55
Domains :
Cant Read [ /etc/named.conf ]
User : emadteam
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
emadteam /
ep /
Delete
Unzip
Name
Size
Permission
Date
Action
.next
[ DIR ]
drwxr-xr-x
2024-12-24 16:04
public
[ DIR ]
drwxr-xr-x
2024-12-24 16:04
src
[ DIR ]
drwxr-xr-x
2024-12-24 16:04
tmp
[ DIR ]
drwxr-xr-x
2024-12-24 16:46
.eslintrc.json
40
B
-rwxr-xr-x
2024-12-24 16:04
README.md
1.42
KB
-rwxr-xr-x
2024-12-24 16:04
jsconfig.json
77
B
-rwxr-xr-x
2024-12-24 16:04
next.config.mjs
328
B
-rwxr-xr-x
2024-12-24 16:04
package-lock.json
194.36
KB
-rw-r--r--
2024-12-24 16:04
package.json
653
B
-rwxr-xr-x
2024-12-24 16:04
postcss.config.mjs
135
B
-rwxr-xr-x
2024-12-24 16:04
server.js
827
B
-rw-r--r--
2024-12-24 16:52
tailwind.config.js
378
B
-rwxr-xr-x
2024-12-24 16:04
Save
Rename
// var http = require('http'); // var server = http.createServer(function(req, res) { // res.writeHead(200, {'Content-Type': 'text/plain'}); // var message = 'It works!\n', // version = 'NodeJS ' + process.versions.node + '\n', // response = [message, version].join('\n'); // res.end(response); // }); // server.listen(); const { createServer } = require('http'); const { parse } = require('url'); const next = require('next'); const port = process.env.PORT || 3000; const app = next({ dev: false }); const handle = app.getRequestHandler(); app.prepare().then(() => { createServer((req, res) => { const parsedUrl = parse(req.url, true); handle(req, res, parsedUrl); }).listen(port, (err) => { if (err) throw err; console.log(`> Ready on http://localhost:${port}`); }); });