remove postgresql passwords where they are not needed #52
No reviewers
Labels
No labels
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: wurzel/fruitbasket#52
Loading…
Reference in a new issue
No description provided.
Delete branch "db-passwords"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
As we use unix socket authentication and have all databases locally we do not need to set database passwords for any service
the escapes look weird bu otherwise very nice
@ -25,3 +25,3 @@
protocolUseSSL = true;
dbURL = "postgres://hedgedoc:\${DB_PASSWORD}@localhost:5432/hedgedoc";
dbURL = "postgres://hedgedoc@%2Frun%2Fpostgresql/hedgedoc";
sessionSecret = "\${SESSION_SECRET}";
why this escaping ?
@ -25,3 +25,3 @@
protocolUseSSL = true;
dbURL = "postgres://hedgedoc:\${DB_PASSWORD}@localhost:5432/hedgedoc";
dbURL = "postgres://hedgedoc@%2Frun%2Fpostgresql/hedgedoc";
sessionSecret = "\${SESSION_SECRET}";
Some services apparently need it to distinguish between socket and internal database/table path