From b5c0006b75acd33a489bae6356978b092d278838 Mon Sep 17 00:00:00 2001 From: Mehmet Efe Umit Date: Fri, 2 Jan 2026 21:56:38 +0300 Subject: [PATCH] Print reverse proxy reminder in v1 CLI --- payjoin-cli/src/app/v1.rs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/payjoin-cli/src/app/v1.rs b/payjoin-cli/src/app/v1.rs index 0d5e044a8..9b906df3a 100644 --- a/payjoin-cli/src/app/v1.rs +++ b/payjoin-cli/src/app/v1.rs @@ -152,6 +152,12 @@ impl App { "Listening at {}. Configured to accept payjoin at BIP 21 Payjoin Uri:", listener.local_addr()? ); + + #[cfg(not(feature = "_manual-tls"))] + println!( + "Make sure to configure a reverse proxy to handle TLS termination for the listener" + ); + println!("{pj_uri_string}"); let app = self.clone();