diff --git a/server/main.go b/server/main.go index 47ae2cc..6fac6ba 100644 --- a/server/main.go +++ b/server/main.go @@ -270,6 +270,9 @@ func completion(w http.ResponseWriter, req *http.Request) { // where I do the IP rate limiting userKey := req.RemoteAddr + if req.Header.Get("X-Forwarded-For") != "" { + userKey = req.Header.Get("X-Forwarded-For") + } createdTime, ok := ipAddyTenFree[userKey] if !ok { ipAddyTenFree[userKey] = currentTime()