Correct A Request Parameter Namespace

This wasn't taking affect before as it wasn't in the object the API was
expecting it to be in
This commit is contained in:
Phil Young
2021-06-15 10:52:44 +01:00
parent 9955166ae8
commit f473e5f73c
2 changed files with 11 additions and 11 deletions

View File

@@ -85,13 +85,13 @@ CERTIFICATE;
'settings' => [
'http2' => 'on',
'http3' => 'on',
'min_tls_version' => '1.2'
]
'min_tls_version' => '1.2',
],
'bundle_method' => 'optimal',
'custom_key' => $customKey,
'custom_certificate' => $customCertificate,
'wildcard' => true,
],
'bundle_method' => 'optimal',
'custom_key' => $customKey,
'custom_certificate' => $customCertificate,
'wildcard' => true,
])
);