mirror of
https://github.com/PhyreApps/PhyrePanel.git
synced 2024-11-22 23:50:33 +00:00
13 lines
260 B
PHP
13 lines
260 B
PHP
|
<?php
|
||
|
|
||
|
namespace Modules\LetsEncrypt;
|
||
|
|
||
|
use App\VirtualHosts\ApacheVirtualHostConfigBase;
|
||
|
|
||
|
class LetsEncryptApacheVirtualHostConfig extends ApacheVirtualHostConfigBase
|
||
|
{
|
||
|
public array $phpAdminValueOpenBaseDirs = [
|
||
|
'/usr/share/letsencrypt',
|
||
|
];
|
||
|
}
|