This commit is contained in:
Andras Bacsai 2023-06-16 13:35:35 +02:00
parent 0123ae97a1
commit a0e229a489
4 changed files with 10 additions and 7 deletions

View File

@ -81,7 +81,10 @@ function set_transanctional_email_settings()
"local_domain" => null, "local_domain" => null,
]); ]);
} }
function base_ip() {
$settings = InstanceSettings::get();
return "http://{$settings->public_ipv4}"
}
function base_url(bool $withPort = true) function base_url(bool $withPort = true)
{ {
$settings = InstanceSettings::get(); $settings = InstanceSettings::get();

View File

@ -1,3 +1,3 @@
<?php <?php
return '4.0.0-nightly.17'; return '4.0.0-nightly.18';

View File

@ -12,7 +12,7 @@
<li> <li>
<a target="_blank" <a target="_blank"
class="text-xs text-white rounded-none hover:no-underline hover:bg-coollabs" class="text-xs text-white rounded-none hover:no-underline hover:bg-coollabs"
href="{{ base_url(withPort: false) }}:8080"> href="{{ base_ip() }}:8080">
Traefik Dashboard Traefik Dashboard
<x-external-link /> <x-external-link />
</a> </a>

View File

@ -1,10 +1,10 @@
{ {
"coolify": { "coolify": {
"main": { "main": {
"version": "3.12.31" "version": "3.12.32"
}, },
"v4": { "v4": {
"version": "4.0.0-nightly.17" "version": "4.0.0-nightly.18"
} }
} }
} }