save checkpoint

This commit is contained in:
master
2026-02-12 21:02:43 +02:00
parent 5bca406787
commit 9911b7d73c
593 changed files with 174390 additions and 1376 deletions

View File

@@ -0,0 +1,25 @@
namespace StellaOps.Router.Gateway.Configuration;
public enum StellaOpsRouteType
{
Microservice,
ReverseProxy,
StaticFiles,
StaticFile,
WebSocket,
NotFoundPage,
ServerErrorPage
}
public sealed class StellaOpsRoute
{
public StellaOpsRouteType Type { get; set; }
public string Path { get; set; } = string.Empty;
public bool IsRegex { get; set; }
public string? TranslatesTo { get; set; }
public Dictionary<string, string> Headers { get; set; } = new();
}