From 1c0ef7bc46dd9b12561605ca0258fe21e60c4196 Mon Sep 17 00:00:00 2001 From: jurgenhaas <juergen@paragon-es.de> Date: Sat, 9 Jan 2021 10:51:53 +0100 Subject: [PATCH] composer/library/docker-traefik#5 Adjust default values --- Traefik.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Traefik.php b/Traefik.php index 4c8c09f..e2fffe4 100644 --- a/Traefik.php +++ b/Traefik.php @@ -61,7 +61,7 @@ class Traefik { * @param string $key_filename * Filename of the private key for the SSL certificate. */ - public function __construct(string $name, $domain = 'docker.localhost', $http_port = 8000, $https_port = 8443, $cert_filename = 'cert.pem', $key_filename = 'key.pem') { + public function __construct(string $name, $domain = 'docker.localhost', $http_port = 8000, $https_port = 8443, $cert_filename = 'fullchain.pem', $key_filename = 'privkey.pem') { $this->name = $name; $this->domain = $domain; $this->http_port = $http_port; -- GitLab