mirror of
https://github.com/coollabsio/coolify.git
synced 2025-12-28 05:34:50 +00:00
fix(ssl): make default ssl mode require not verify-full as it does not need a ca cert
This commit is contained in:
parent
546001890c
commit
b53d3d07d9
@ -13,7 +13,7 @@ return new class extends Migration
|
||||
{
|
||||
Schema::table('standalone_postgresqls', function (Blueprint $table) {
|
||||
$table->boolean('enable_ssl')->default(true);
|
||||
$table->string('ssl_mode')->nullable()->default('verify-full');
|
||||
$table->string('ssl_mode')->nullable()->default('require');
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user