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