This commit is contained in:
Joao Patricio
2023-05-03 07:40:12 +01:00
16 changed files with 709 additions and 144 deletions

10
app/Enums/ProxyTypes.php Normal file
View File

@@ -0,0 +1,10 @@
<?php
namespace App\Enums;
enum ProxyTypes: string
{
case TRAEFIK_V2 = 'TRAEFIK_V2';
case NGINX = 'NGINX';
case CADDY = 'CADDY';
}