add server types

This commit is contained in:
Saeed Vaziry
2023-07-10 12:15:55 +02:00
parent 6f9bba5511
commit d673336ca3
13 changed files with 265 additions and 43 deletions

View File

@ -7,4 +7,5 @@
final class ServerType extends Enum
{
const REGULAR = 'regular';
const DATABASE = 'database';
}

View File

@ -6,5 +6,7 @@
final class Webserver extends Enum
{
const NONE = 'none';
const NGINX = 'nginx';
}