Question
IP address to domain redirection problem in NGINX
Hello, My server is running NGINX. My problem is my site is accessible by both IP address and the domain. But I want that when someone browse the IP address the user shoulde be redirected to my domain.
Example :: When any one browse through http://107.170.126.xxx he should be redirected to http://mydomain.com
Please can anybody help me? Thanks in advance
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
×
Hello dmsumon,
I’m got same problem, but i’ve found a solution from this link http://stackoverflow.com/a/22513456/3086112
Just add simple configuration on your nginx server config.
server {
servername 107.170.126.xxx;
# you can add other servername if you need other IPs
# or domain names such as without the www
}