summary refs log tree commit diff
path: root/src/util
diff options
context:
space:
mode:
authorMadeline <46743919+MaddyUnderStars@users.noreply.github.com>2023-06-14 18:30:16 +1000
committerGitHub <noreply@github.com>2023-06-14 18:30:16 +1000
commitbf079ffa7a6211ee7387cf2c4f446d769a88fb5c (patch)
tree33b5389bc40e03943e118cbbc959d046a23c212a /src/util
parentMerge pull request #1069 from ngn13/pass_length_check (diff)
parentUpdate Connection.ts (diff)
downloadserver-bf079ffa7a6211ee7387cf2c4f446d769a88fb5c.tar.xz
Merge pull request #1066 from Zert3x/master
Fix a typo
Diffstat (limited to 'src/util')
-rw-r--r--src/util/config/types/SecurityConfiguration.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util/config/types/SecurityConfiguration.ts b/src/util/config/types/SecurityConfiguration.ts
index 5e971cfe..35776642 100644
--- a/src/util/config/types/SecurityConfiguration.ts
+++ b/src/util/config/types/SecurityConfiguration.ts
@@ -28,7 +28,7 @@ export class SecurityConfiguration {
 	// header to get the real user ip address
 	// X-Forwarded-For for nginx/reverse proxies
 	// CF-Connecting-IP for cloudflare
-	forwadedFor: string | null = null;
+	forwardedFor: string | null = null;
 	ipdataApiKey: string | null =
 		"eca677b284b3bac29eb72f5e496aa9047f26543605efe99ff2ce35c9";
 	mfaBackupCodeCount: number = 10;