version up, TLS, ADMIN_PASS to ADMIN_PASSWORD

pull/598/head
hunterlong 2020-05-20 00:10:04 -07:00
parent 7630eb3263
commit 42fb363673
6 changed files with 12 additions and 8 deletions

View File

@ -1,3 +1,7 @@
# 0.90.41 (05-20-2020)
- Added TLS Client Cert/Key feature for HTTP and TCP/UDP services
- Replaced environment variable ADMIN_PASS to ADMIN_PASSWORD.
# 0.90.40 (05-18-2020)
- Fixed issues with MySQL and Postgres taking forever to insert sample data (now run in bulk)
- Removed API Authentication for /api/logout route

View File

@ -36,7 +36,7 @@ services:
DOMAIN: http://localhost:8080
DESCRIPTION: This is a dev environment on SQLite!
ADMIN_USER: admin
ADMIN_PASS: admin
ADMIN_PASSWORD: admin
SAMPLE_DATA: 'false'
ports:
- 8080:8080
@ -69,7 +69,7 @@ services:
DOMAIN: http://localhost:8081
DESCRIPTION: This is a dev environment on MySQL!
ADMIN_USER: admin
ADMIN_PASS: admin
ADMIN_PASSWORD: admin
SAMPLE_DATA: 'false'
ports:
- 8081:8080
@ -105,7 +105,7 @@ services:
DOMAIN: http://localhost:8082
DESCRIPTION: This is a dev environment on Postgres!
ADMIN_USER: admin
ADMIN_PASS: admin
ADMIN_PASSWORD: admin
SAMPLE_DATA: 'false'
ports:
- 8082:8080
@ -141,7 +141,7 @@ services:
DOMAIN: http://localhost:8083
DESCRIPTION: This is a dev environment on MariaDB!
ADMIN_USER: admin
ADMIN_PASS: admin
ADMIN_PASSWORD: admin
SAMPLE_DATA: 'false'
ports:
- 8083:8080

View File

@ -24,7 +24,7 @@ services:
DOMAIN: http://localhost:8585
DESCRIPTION: This is a dev environment with auto reloading!
ADMIN_USER: admin
ADMIN_PASS: admin
ADMIN_PASSWORD: admin
PORT: 8585
ports:
- 8888:8888

2
dev/pwd-stack.yml vendored
View File

@ -18,7 +18,7 @@ services:
DOMAIN: http://localhost:8080
DESCRIPTION: This is a dev environment on SQLite!
ADMIN_USER: admin
ADMIN_PASS: admin
ADMIN_PASSWORD: admin
postgres:
hostname: postgres

View File

@ -62,7 +62,7 @@ func LoadConfigFile(configFile string) (*DbConfig, error) {
Domain: p.GetString("DOMAIN"),
Email: p.GetString("EMAIL"),
Username: p.GetString("ADMIN_USER"),
Password: p.GetString("ADMIN_PASS"),
Password: p.GetString("ADMIN_PASSWORD"),
Location: utils.Directory,
SqlFile: p.GetString("SQL_FILE"),
}

View File

@ -1 +1 @@
0.90.40
0.90.41