From 9f9038033683b3f07dde88f2fa4e8f7e4a4e9bf9 Mon Sep 17 00:00:00 2001 From: Jacek Chmielewski Date: Tue, 7 Apr 2026 12:17:41 +0200 Subject: [PATCH 1/2] clear https certs & restart server --- core/proxy.proto | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/core/proxy.proto b/core/proxy.proto index 10261ee..7bc2d77 100644 --- a/core/proxy.proto +++ b/core/proxy.proto @@ -327,6 +327,7 @@ message CoreResponse { InitialInfo initial_info = 18; AwaitRemoteMfaFinishResponse await_remote_mfa_finish = 19; HttpsCerts https_certs = 20; + ClearHttpsCerts clear_https_certs = 21; } } @@ -335,6 +336,8 @@ message HttpsCerts { string key_pem = 2; } +message ClearHttpsCerts {} + /* * Sent from core to proxy to trigger ACME HTTP-01 certificate issuance. */ @@ -461,4 +464,3 @@ service ProxySetup { rpc GetCsr(CertificateInfo) returns (DerPayload); rpc SendCert(DerPayload) returns (google.protobuf.Empty); } - From 496047b14394e326fd30cecda955d966d7183e72 Mon Sep 17 00:00:00 2001 From: Jacek Chmielewski Date: Wed, 8 Apr 2026 14:26:15 +0200 Subject: [PATCH 2/2] use google.protobuf.Empty instead of ClearHttpsCerts --- core/proxy.proto | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/core/proxy.proto b/core/proxy.proto index 7bc2d77..391d327 100644 --- a/core/proxy.proto +++ b/core/proxy.proto @@ -327,7 +327,7 @@ message CoreResponse { InitialInfo initial_info = 18; AwaitRemoteMfaFinishResponse await_remote_mfa_finish = 19; HttpsCerts https_certs = 20; - ClearHttpsCerts clear_https_certs = 21; + google.protobuf.Empty clear_https_certs = 21; } } @@ -336,8 +336,6 @@ message HttpsCerts { string key_pem = 2; } -message ClearHttpsCerts {} - /* * Sent from core to proxy to trigger ACME HTTP-01 certificate issuance. */