[pve-devel] [PATCH proxmox-acme 1/2] add support for proxies
Stoiko Ivanov
s.ivanov at proxmox.com
Tue Nov 9 17:36:28 CET 2021
by setting the proxy for the LWP::UserAgent
Signed-off-by: Stoiko Ivanov <s.ivanov at proxmox.com>
---
src/PVE/ACME.pm | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/src/PVE/ACME.pm b/src/PVE/ACME.pm
index 57578d7..3f66182 100644
--- a/src/PVE/ACME.pm
+++ b/src/PVE/ACME.pm
@@ -113,6 +113,12 @@ sub new($$$) {
return bless $self, $class;
}
+sub set_proxy($$) {
+ my ($self, $proxy) = @_;
+
+ $self->{ua}->proxy('https', $proxy);
+}
+
# RS256: PKCS#1 padding, no OAEP, SHA256
my $configure_key = sub {
my ($key) = @_;
--
2.30.2
More information about the pve-devel
mailing list