Add trust proxy checkbox in Settings page

This commit is contained in:
Chongyi Zheng
2022-07-12 22:45:54 -04:00
parent f33b6de157
commit 6ce012c9a1
3 changed files with 55 additions and 0 deletions

View File

@@ -153,6 +153,10 @@ export default {
this.settings.tlsExpiryNotifyDays = [ 7, 14, 21 ];
}
if (this.settings.trustProxy === undefined) {
this.settings.trustProxy = false;
}
this.settingsLoaded = true;
});
},