Skip to content

Commit

Permalink
fix: change default mysql hostname on new sites from localhost to 127…
Browse files Browse the repository at this point in the history
….0.0.1 to use ipv4
  • Loading branch information
BertanT authored and daniellockyer committed Mar 19, 2024
1 parent ff577b6 commit 526d080
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/tasks/configure/get-prompts.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ module.exports = function getPrompts(config, argv, environment) {
type: 'input',
name: 'dbhost',
message: 'Enter your MySQL hostname:',
default: config.get('database.connection.host', 'localhost')
default: config.get('database.connection.host', '127.0.0.1')
});
}

Expand Down

0 comments on commit 526d080

Please sign in to comment.