An open API service indexing awesome lists of open source software.

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

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 ;)