Exemplo n.º 1
0
 public function __construct(Hostname $hostname)
 {
     $this->hostname = $hostname;
     $this->contact = config('webserver.ssl.lets-encrypt-contact');
     $this->directory = sprintf('%s/%s', config('webserver.ssl.lets-encrypt-storage-path'), array_get($this->contact, 'username'));
     // inject our custom namespace for Challenge solving.
     Challenge::setSolverLocations(['Hyn\\Webserver\\Solvers']);
 }