Hello,
I followed this tutorial to install Nginx on my droplet but I still see the “Welcome to nginx!” page instead of my home page.
Here’s the content of my config file:
/etc/nginx/sites-available/mydomain.com
server {
listen 80;
listen [::]:80;
root /var/www/mydomain.com/html;
index index.html index.htm index.nginx-debian.html;
server_name mydomain.com www.mydomain.com;
location / {
try_files $uri $uri/ =404;
}
}
Also, when I run sudo nginx -t
command, I get the following:
nginx: [warn] conflicting server name "mydomain.com" on 0.0.0.0:80, ignored
nginx: [warn] conflicting server name "www.mydomain.com" on 0.0.0.0:80, ignored
nginx: [warn] conflicting server name "mydomain.com" on [::]:80, ignored
nginx: [warn] conflicting server name "www.mydomain.com" on [::]:80, ignored
nginx: the configuration file /etc/nginx/nginx.conf syntax is ok
nginx: configuration file /etc/nginx/nginx.conf test is successful
Please assist.
Thank you.
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!
Accepted Answer
Hello,
Request you to refer to below link, which gives you better insights on how to resolve this:
https://www.digitalocean.com/community/questions/nginx-showing-welcome-page-instead-of-homepage https://stackoverflow.com/questions/14460935/nginx-only-shows-welcome-page
Hope this helps!
Cheers, Sri Charan
Finally figured it out. For me, what worked was that I had to add the IP address as one of the server_names:
server_name abc.com www.abc.com 123.345.66.7;
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
Sign up and get $200 in credit for your first 60 days with DigitalOcean.*
*This promotional offer applies to new accounts only.