https://github.com/aghae/secminer
Noedjs Secure Adminer Wrapper
https://github.com/aghae/secminer
adminer database javascript nodejs
Last synced: about 2 months ago
JSON representation
Noedjs Secure Adminer Wrapper
- Host: GitHub
- URL: https://github.com/aghae/secminer
- Owner: aghae
- Created: 2019-09-01T10:54:59.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2024-02-19T08:21:57.000Z (about 2 years ago)
- Last Synced: 2025-01-29T00:26:38.974Z (about 1 year ago)
- Topics: adminer, database, javascript, nodejs
- Language: PHP
- Homepage:
- Size: 4.43 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Secure Adminer
#### Nodejs Secure Wrapper for php Adminer (GUI database Manager Specialy MySQL)
**Install:**
```
Extract & cd to extracted folder
$ npm install
$ npm start
```
It run on port 8443 by default .you can change port like this :
```
$ port=8000 npm start
```
by default it uses certificate in ssl folder but
you can generate your certifficate :
```
$ ./keygen.sh
$ npm start
```
**Config:**
to enable login for password-less databases like sqlite goto miner/config.php and change $config_login_password_less value:
```
true ,
"secret_code" => "3ekrEtKii"
/*
generate new sekret key (change AppName,AppInfo and SecretCode) :
https://www.authenticatorApi.com/pair.aspx?AppName=seminer&AppInfo=root&SecretCode=3ekrEtKii
and scan it with google authenticator :
https://play.google.com/store/apps/details?id=com.google.android.apps.authenticator2&hl=en&gl=US
*/
);
```
good luck ;)