Add environment variables to override admin panel interface settings

Co-authored-by: kaaax0815 <32197462+kaaax0815@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2025-11-14 13:01:39 +00:00
parent 5d6c35b183
commit e444936c04
5 changed files with 87 additions and 15 deletions
+27
View File
@@ -54,6 +54,19 @@ export const WG_INITIAL_ENV = {
: undefined,
};
export const WG_OVERRIDE_ENV = {
/** Override the WireGuard interface port */
INTERFACE_PORT: process.env.OVERRIDE_INTERFACE_PORT
? Number.parseInt(process.env.OVERRIDE_INTERFACE_PORT, 10)
: undefined,
/** Override the network device/interface */
INTERFACE_DEVICE: process.env.OVERRIDE_INTERFACE_DEVICE,
/** Override the MTU setting */
INTERFACE_MTU: process.env.OVERRIDE_INTERFACE_MTU
? Number.parseInt(process.env.OVERRIDE_INTERFACE_MTU, 10)
: undefined,
};
function assertEnv<T extends string>(env: T) {
const val = process.env[env];
@@ -63,3 +76,17 @@ function assertEnv<T extends string>(env: T) {
return val;
}
/**
* Apply environment variable overrides to an interface object
*/
export function applyInterfaceOverrides<
T extends { port: number; device: string; mtu: number },
>(wgInterface: T): T {
return {
...wgInterface,
port: WG_OVERRIDE_ENV.INTERFACE_PORT ?? wgInterface.port,
device: WG_OVERRIDE_ENV.INTERFACE_DEVICE ?? wgInterface.device,
mtu: WG_OVERRIDE_ENV.INTERFACE_MTU ?? wgInterface.mtu,
};
}