fix(core): update

This commit is contained in:
Philipp Kunz 2019-11-03 01:21:38 +01:00
parent dd39b5d2ce
commit e826047b9c

View File

@ -4,4 +4,9 @@ export interface IReverseProxyConfig {
hostName: string; hostName: string;
privateKey: string; privateKey: string;
publicKey: string; publicKey: string;
authentication?: {
type: 'Basic';
user: string;
pass: string;
};
} }