Skip to content

Commit ed99db0

Browse files
committed
Merge branch 'next' of github.com:coollabsio/coolify into next
2 parents 77654fa + fbe127f commit ed99db0

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

app/Models/Server.php

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -209,10 +209,13 @@ public function setupDefault404Redirect()
209209
1 => 'https',
210210
],
211211
'service' => 'noop',
212-
'rule' => 'HostRegexp(`{catchall:.*}`)',
212+
'rule' => 'HostRegexp(`.+`)',
213+
'tls' => [
214+
'certResolver' => 'letsencrypt',
215+
],
213216
'priority' => 1,
214217
'middlewares' => [
215-
0 => 'redirect-regexp@file',
218+
0 => 'redirect-regexp',
216219
],
217220
],
218221
],

bootstrap/helpers/proxy.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -164,6 +164,7 @@ function generate_default_proxy_configuration(Server $server)
164164
'ports' => [
165165
'80:80',
166166
'443:443',
167+
'443:443/udp',
167168
'8080:8080',
168169
],
169170
'healthcheck' => [
@@ -187,6 +188,7 @@ function generate_default_proxy_configuration(Server $server)
187188
'--entryPoints.http.http2.maxConcurrentStreams=50',
188189
'--entrypoints.https.http.encodequerysemicolons=true',
189190
'--entryPoints.https.http2.maxConcurrentStreams=50',
191+
'--entrypoints.https.http3',
190192
'--providers.docker.exposedbydefault=false',
191193
'--providers.file.directory=/traefik/dynamic/',
192194
'--providers.file.watch=true',

0 commit comments

Comments
 (0)