Answer the question
In order to leave comments, you need to log in
Answer the question
In order to leave comments, you need to log in
You can implement proxying on the side of your backend/server. Easiest way with nginx:
location /proxy {
proxy_pass http://domain.com;
proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Real-IP $remote_addr;
}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question