Reputation: 1104
Is it possible to remove the referer completely using Nginx reverse proxy configuration.
Upvotes: 4
Views: 10266
Reputation: 841
Set proxy header to an empty string.
proxy_set_header Referer "";
Upvotes: 7