Skip to content

Commit

Permalink
set traefik proxy to 2.10
Browse files Browse the repository at this point in the history
  • Loading branch information
andrasbacsai committed May 4, 2023
1 parent 1864021 commit 34b162e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
3 changes: 2 additions & 1 deletion app/Actions/Proxy/InstallProxy.php
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,8 @@ protected function getComposeData(): array
],
"services" => [
"traefik" => [
"image" => "traefik:v2.9",
"container_name" => "coolify-proxy",
"image" => "traefik:v2.10",
"restart" => "always",
"extra_hosts" => [
"host.docker.internal:host-gateway",
Expand Down
5 changes: 5 additions & 0 deletions resources/views/components/layout.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
@env('local')
<title>Coolify - localhost</title>
@endenv
@env('production')
<title>{{ $title ?? 'Coolify' }}</title>
@endenv
<meta name="csrf-token" content="{{ csrf_token() }}">
@vite(['resources/js/app.js', 'resources/css/app.css'])
<style>
Expand Down

0 comments on commit 34b162e

Please sign in to comment.