Skip to content

Commit

Permalink
Fixes unescaped values for database credentials
Browse files Browse the repository at this point in the history
  • Loading branch information
samgeorges committed Sep 7, 2022
1 parent ce35a13 commit 8af5a49
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
6 changes: 3 additions & 3 deletions beacon/templates/app/.env.stub
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ LOG_CHANNEL=single
DB_CONNECTION={db_type}
DB_HOST={db_host}
DB_PORT={db_port}
DB_DATABASE={db_name}
DB_USERNAME={db_user}
DB_PASSWORD={db_pass}
DB_DATABASE="{db_name}"
DB_USERNAME="{db_user}"
DB_PASSWORD="{db_pass}"

BROADCAST_DRIVER=log
CACHE_DRIVER=file
Expand Down
1 change: 1 addition & 0 deletions updates/version.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,4 @@ v2.0.1: Rewrite beacon interface
v2.0.2: Fixes support for 32-bit systems
v2.1.0: Improve support with October v3
v2.1.1: Adds support for app directory deployment
v2.1.2: Fixes unescaped values for database credentials

0 comments on commit 8af5a49

Please sign in to comment.