feat: add a proxy option into settings

This commit is contained in:
Gauthier
2024-10-19 00:18:30 +02:00
parent a2b3408c9a
commit d99ae35c2e
6 changed files with 64 additions and 5 deletions

View File

@@ -13,7 +13,8 @@ class RestartFlag {
return (
this.settings.csrfProtection !== settings.csrfProtection ||
this.settings.trustProxy !== settings.trustProxy
this.settings.trustProxy !== settings.trustProxy ||
this.settings.httpProxy !== settings.httpProxy
);
}
}