diff --git a/bootstrap/helpers/docker.php b/bootstrap/helpers/docker.php index 1ae92ff3a..10240c02c 100644 --- a/bootstrap/helpers/docker.php +++ b/bootstrap/helpers/docker.php @@ -230,7 +230,6 @@ function fqdnLabelsForTraefik(string $uuid, Collection $domains, bool $is_force_ $https_label = "https-{$loop}-{$uuid}"; $labels->push("traefik.http.middlewares.gzip.compress=true"); - $labels->push("traefik.http.routers.{$https_label}.middlewares=gzip"); if ($schema === 'https') { // Set labels for https $labels->push("traefik.http.routers.{$https_label}.rule=Host(`{$host}`) && PathPrefix(`{$path}`)"); @@ -240,8 +239,10 @@ function fqdnLabelsForTraefik(string $uuid, Collection $domains, bool $is_force_ $labels->push("traefik.http.services.{$https_label}.loadbalancer.server.port=$port"); } if ($path !== '/') { - $labels->push("traefik.http.routers.{$https_label}.middlewares={$https_label}-stripprefix"); $labels->push("traefik.http.middlewares.{$https_label}-stripprefix.stripprefix.prefixes={$path}"); + $labels->push("traefik.http.routers.{$https_label}.middlewares={$https_label}-stripprefix,gzip"); + } else { + $labels->push("traefik.http.routers.{$https_label}.middlewares=gzip"); } $labels->push("traefik.http.routers.{$https_label}.tls=true"); @@ -267,8 +268,10 @@ function fqdnLabelsForTraefik(string $uuid, Collection $domains, bool $is_force_ $labels->push("traefik.http.routers.{$http_label}.service={$http_label}"); } if ($path !== '/') { - $labels->push("traefik.http.routers.{$http_label}.middlewares={$http_label}-stripprefix"); $labels->push("traefik.http.middlewares.{$http_label}-stripprefix.stripprefix.prefixes={$path}"); + $labels->push("traefik.http.routers.{$http_label}.middlewares={$http_label}-stripprefix,gzip"); + } else { + $labels->push("traefik.http.routers.{$http_label}.middlewares=gzip"); } } } catch (\Throwable $e) { diff --git a/config/sentry.php b/config/sentry.php index f8d1e0846..d8d09746b 100644 --- a/config/sentry.php +++ b/config/sentry.php @@ -7,7 +7,7 @@ return [ // The release version of your application // Example with dynamic git hash: trim(exec('git --git-dir ' . base_path('.git') . ' log --pretty="%h" -n1 HEAD')) - 'release' => '4.0.0-beta.192', + 'release' => '4.0.0-beta.193', // When left empty or `null` the Laravel environment will be used 'environment' => config('app.env'), diff --git a/config/version.php b/config/version.php index 7c6364103..40ea0dab6 100644 --- a/config/version.php +++ b/config/version.php @@ -1,3 +1,3 @@