send proxy mapping updates

This commit is contained in:
pascal
2026-01-27 16:34:00 +01:00
parent 8dd22f3a4f
commit b7eeefc102
11 changed files with 339 additions and 180 deletions

View File

@@ -40,15 +40,14 @@ message PathMapping {
}
message Authentication {
HTTPBasic basic = 1;
Password password = 1;
Pin pin = 2;
OIDC oidc = 3;
}
message HTTPBasic {
message Password {
bool enabled = 1;
string username = 2;
string password = 3;
string password = 2;
}
message Pin {
@@ -56,6 +55,11 @@ message Pin {
string pin = 2;
}
message Link {
bool enabled = 1;
string link_url = 2;
}
message OIDC {
bool enabled = 1;
string oidc_provider_url = 2;