Skip to content

Commit

Permalink
version up, TLS, ADMIN_PASS to ADMIN_PASSWORD
Browse files Browse the repository at this point in the history
  • Loading branch information
hunterlong committed May 20, 2020
1 parent 7630eb3 commit 42fb363
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 8 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
8 changes: 4 additions & 4 deletions dev/docker-compose.full.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion dev/docker-compose.lite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion dev/pwd-stack.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion types/configs/load.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"),
}
Expand Down
2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.90.40
0.90.41

0 comments on commit 42fb363

Please sign in to comment.