Linux ams-business-8.hostwindsdns.com 4.18.0-553.80.1.lve.el8.x86_64 #1 SMP Wed Oct 22 19:29:36 UTC 2025 x86_64
LiteSpeed
Server IP : 192.236.177.161 & Your IP : 216.73.216.154
Domains :
Cant Read [ /etc/named.conf ]
User : ajzdfbpz
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
softaculous /
ghost /
Delete
Unzip
Name
Size
Permission
Date
Action
images
[ DIR ]
drwxr-xr-x
2017-07-04 10:24
node
[ DIR ]
drwxr-xr-x
2017-07-04 10:24
php53
[ DIR ]
drwxr-xr-x
2017-07-04 10:24
php56
[ DIR ]
drwxr-xr-x
2017-07-04 10:24
.htaccess
231
B
-rw-r--r--
2016-06-07 10:12
_import.php
1.78
KB
-rw-r--r--
2013-11-30 13:01
config.js
4.51
KB
-rw-r--r--
2016-10-14 10:24
cron.php
413
B
-rw-r--r--
2014-01-17 13:42
edit.php
11.66
KB
-rw-r--r--
2017-06-19 11:37
edit.xml
512
B
-rw-r--r--
2014-03-20 10:30
fileindex.php
170
B
-rw-r--r--
2015-04-14 10:14
info.xml
2.29
KB
-rw-r--r--
2017-06-19 11:24
install.js
921
B
-rw-r--r--
2013-11-29 09:39
install.php
13.65
KB
-rw-r--r--
2017-06-19 11:37
install.xml
508
B
-rw-r--r--
2014-02-21 09:56
install_ghost.php
2.78
KB
-rw-r--r--
2013-11-30 14:06
md5
3.34
KB
-rw-r--r--
2017-06-19 11:37
notes.txt
452
B
-rw-r--r--
2017-04-19 10:31
npm-shrinkwrap.json
121.39
KB
-rw-r--r--
2017-06-19 11:24
package.json
2.99
KB
-rw-r--r--
2017-06-19 11:24
remove.php
1.89
KB
-rw-r--r--
2013-11-29 14:55
upgrade.php
10.52
KB
-rw-r--r--
2017-06-19 11:37
upgrade.xml
342
B
-rw-r--r--
2015-03-02 10:18
Save
Rename
// # Ghost Configuration // Setup your Ghost install for various [environments](http://support.ghost.org/config/#about-environments). // Ghost runs in `development` mode by default. Full documentation can be found at http://support.ghost.org/config/ var path = require('path'), config; config = { // ### Production // When running Ghost in the wild, use the production environment. // Configure your URL and mail settings here production: { url: '[[softurl]]', mail: {}, database: { client: 'mysql', connection: { host: '[[softdbhost]]', user: '[[softdbuser]]', password: '[[softdbpass]]', database: '[[softdb]]', charset: 'utf8', insecureAuth: true, [[socketPath]] }, debug: false }, server: { host: '0.0.0.0', port: '[[port]]' } }, // ### Development **(default)** development: { // The url to use when providing links to the site, E.g. in RSS and email. // Change this to your Ghost blog's published URL. url: 'http://localhost:2368', // Example refferer policy // Visit https://www.w3.org/TR/referrer-policy/ for instructions // default 'origin-when-cross-origin', // referrerPolicy: 'origin-when-cross-origin', // Example mail config // Visit http://support.ghost.org/mail for instructions // ``` // mail: { // transport: 'SMTP', // options: { // service: 'Mailgun', // auth: { // user: '', // mailgun username // pass: '' // mailgun password // } // } // }, // ``` // #### Database // Ghost supports sqlite3 (default), MySQL & PostgreSQL database: { client: 'sqlite3', connection: { filename: path.join(__dirname, '/content/data/ghost-dev.db') }, debug: false }, // #### Server // Can be host & port (default), or socket server: { // Host to be passed to node's `net.Server#listen()` host: '127.0.0.1', // Port to be passed to node's `net.Server#listen()`, for iisnode set this to `process.env.PORT` port: '2368' }, // #### Paths // Specify where your content directory lives paths: { contentPath: path.join(__dirname, '/content/') } }, // **Developers only need to edit below here** // ### Testing // Used when developing Ghost to run tests and check the health of Ghost // Uses a different port number testing: { url: 'http://127.0.0.1:2369', database: { client: 'sqlite3', connection: { filename: path.join(__dirname, '/content/data/ghost-test.db') }, pool: { afterCreate: function (conn, done) { conn.run('PRAGMA synchronous=OFF;' + 'PRAGMA journal_mode=MEMORY;' + 'PRAGMA locking_mode=EXCLUSIVE;' + 'BEGIN EXCLUSIVE; COMMIT;', done); } }, useNullAsDefault: true }, server: { host: '127.0.0.1', port: '2369' }, logging: false }, // ### Testing MySQL // Used by Travis - Automated testing run through GitHub 'testing-mysql': { url: 'http://127.0.0.1:2369', database: { client: 'mysql', connection: { host : '127.0.0.1', user : 'root', password : '', database : 'ghost_testing', charset : 'utf8' } }, server: { host: '127.0.0.1', port: '2369' }, logging: false }, // ### Testing pg // Used by Travis - Automated testing run through GitHub 'testing-pg': { url: 'http://127.0.0.1:2369', database: { client: 'pg', connection: { host : '127.0.0.1', user : 'postgres', password : '', database : 'ghost_testing', charset : 'utf8' } }, server: { host: '127.0.0.1', port: '2369' }, logging: false } }; module.exports = config;