Domain Create Modal anpassen Fehler auf Null
parent
3f9ebd8300
commit
f6305ba591
|
|
@ -113,8 +113,8 @@ class DkimService
|
||||||
}
|
}
|
||||||
return [
|
return [
|
||||||
'selector' => $selKey,
|
'selector' => $selKey,
|
||||||
'priv_path' => method_exists($disk,'path') ? $disk->path($privRel) : storage_path('app/'.$privRel),
|
'priv_path' => $disk->path($privRel),
|
||||||
'pub_path' => method_exists($disk,'path') ? $disk->path($pubRel) : storage_path('app/'.$pubRel),
|
'pub_path' => $disk->path($pubRel),
|
||||||
'public_pem' => $publicKeyPem,
|
'public_pem' => $publicKeyPem,
|
||||||
'private_pem' => $privateKey,
|
'private_pem' => $privateKey,
|
||||||
'dns_name' => "{$selKey}._domainkey",
|
'dns_name' => "{$selKey}._domainkey",
|
||||||
|
|
@ -158,8 +158,8 @@ class DkimService
|
||||||
|
|
||||||
return [
|
return [
|
||||||
'selector' => $selKey,
|
'selector' => $selKey,
|
||||||
'priv_path' => method_exists($disk,'path') ? $disk->path($privRel) : storage_path('app/'.$privRel),
|
'priv_path' => $disk->path($privRel),
|
||||||
'pub_path' => method_exists($disk,'path') ? $disk->path($pubRel) : storage_path('app/'.$pubRel),
|
'pub_path' => $disk->path($pubRel),
|
||||||
'public_pem' => $publicKeyPem,
|
'public_pem' => $publicKeyPem,
|
||||||
'private_pem' => $privateKey,
|
'private_pem' => $privateKey,
|
||||||
'dns_name' => "{$selKey}._domainkey",
|
'dns_name' => "{$selKey}._domainkey",
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue