Hello.
I’m trying to point my local hosts file on Windows to droplet IP address.
Everything allright. ufw
is disabled. Nginx config is correct. Any other IP address in hosts file resolves in correct way but this don’t.
Is there a way to solve this?
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
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.
Sign up for Infrastructure as a Newsletter.
Working on improving health and education, reducing inequality, and spurring economic growth? We'd like to help.
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
.test domain goes wild. Any other domain works like a charm.
Heya, @littlegraysnorkler
Sometimes, DNS cache can cause issues with resolving hosts. You can flush the DNS cache on your Windows machine by opening Command Prompt as an administrator and running the command
ipconfig /flushdns
.Regards
Hey @littlegraysnorkler,
You need to add the following in your hosts.file on your Windows machine :
The file is located in
c:\Windows\System32\Drivers\etc\hosts.
Be sure to open it as an Administrator otherwise you can’t save the change made to the file.Once that is done, open your CMD on your Windows laptop and try to ping your domain :
If the IP shown is your Droplet’s than you are good to go.
If that is the case and you still can’t load the website then the issue is with your Nginx config. IF that’s the case you can post the config here and I’ll try to assist with that as well.