From 30343b0049a68fb24def3976daa37fb052211ab8 Mon Sep 17 00:00:00 2001 From: peaklabs-dev <122374094+peaklabs-dev@users.noreply.github.com> Date: Mon, 3 Feb 2025 21:40:41 +0100 Subject: [PATCH] feat(ui): improve server advanced view - use new path for CA certificate - fix grammar - added link to the docs - added "valid until" to show expiration date --- .../views/livewire/server/advanced.blade.php | 39 ++++++++++++------- 1 file changed, 26 insertions(+), 13 deletions(-) diff --git a/resources/views/livewire/server/advanced.blade.php b/resources/views/livewire/server/advanced.blade.php index 737f52bea..471f3767c 100644 --- a/resources/views/livewire/server/advanced.blade.php +++ b/resources/views/livewire/server/advanced.blade.php @@ -47,12 +47,12 @@ buttonTitle="Save Certificate" submitAction="saveCaCertificate" :actions="[ - 'This will overwrite the existing CA certificate at /data/coolify/ca/coolify-ca.crt with your custom CA certificate.', + 'This will overwrite the existing CA certificate at /data/coolify/ssl/coolify-ca.crt with your custom CA certificate.', 'This will regenerate all SSL certificates for databases on this server and it will sign them with your custom CA.', - 'You must manually redeploy all your databases to use the new SSL certificate.', - 'You proabley also need to redeploy all your resources using the CA certificate.' + 'You must manually redeploy all your databases on this server so that they use the new SSL certificates singned with your new CA certificate.', + 'Because of caching, you probably also need to redeploy all your resources on this server that are using this CA certificate.' ]" - confirmationText="/data/coolify/ca/coolify-ca.crt" + confirmationText="/data/coolify/ssl/coolify-ca.crt" shortConfirmationLabel="CA Certificate Path" step3ButtonText="Save Certificate"> @@ -61,12 +61,12 @@ buttonTitle="Regenerate Certificate" submitAction="regenerateCaCertificate" :actions="[ - 'This will generate a new CA certificate at /data/coolify/ca/coolify-ca.crt and replace the existing one.', - 'This will regenerate all SSL certificates for databases on this server and it will sign them with your custom CA.', - 'You must manually redeploy all your databases to use the new SSL certificate.', - 'You proabley also need to redeploy all your resources using the CA certificate.' + 'This will generate a new CA certificate at /data/coolify/ssl/coolify-ca.crt and replace the existing one.', + 'This will regenerate all SSL certificates for databases on this server and it will sign them with the new CA certificate.', + 'You must manually redeploy all your databases on this server so that they use the new SSL certificates singned with the new CA certificate.', + 'Because of caching, you probably also need to redeploy all your resources on this server that are using this CA certificate.' ]" - confirmationText="/data/coolify/ca/coolify-ca.crt" + confirmationText="/data/coolify/ssl/coolify-ca.crt" shortConfirmationLabel="CA Certificate Path" step3ButtonText="Regenerate Certificate"> @@ -75,19 +75,32 @@
Recommended Configuration: