diff --git a/internal/handlers/handlers.go b/internal/handlers/handlers.go index 2477e9b..158f7f9 100644 --- a/internal/handlers/handlers.go +++ b/internal/handlers/handlers.go @@ -181,7 +181,7 @@ func (h *UploadHandlers) Upload(w http.ResponseWriter, r *http.Request) { netTyp, _ := utils.NetworkType(r.Host) - h.logUpload.Printf("| %s | %s | %s | SHA256 %s | %s | %d | %s", r.RemoteAddr, netTyp, + h.logUpload.Printf("| %s | %s | %s | SHA256 %s | %s | %d | %s", r.Header.Get("X-Real-IP"), netTyp, fHandler.Filename, fSha256, fSaltedHash, fHandler.Size, r.UserAgent()) w.WriteHeader(http.StatusCreated) @@ -234,7 +234,7 @@ func (h *UploadHandlers) Download(w http.ResponseWriter, r *http.Request) { netTyp, _ := utils.NetworkType(r.Host) - h.logDownload.Printf("| %s | %s | %s | %s | %s", r.RemoteAddr, netTyp, name, saltedHash, r.UserAgent()) + h.logDownload.Printf("| %s | %s | %s | %s | %s", r.Header.Get("X-Real-IP"), netTyp, name, saltedHash, r.UserAgent()) http.ServeContent(w, r, path, stat.ModTime(), fd) }