Skip to content
Snippets Groups Projects
Commit 1c0ef7bc authored by jurgenhaas's avatar jurgenhaas
Browse files

#5 Adjust default values

parent d64f3100
No related branches found
No related tags found
No related merge requests found
......@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment