Question

Nginx shows default page

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.

Show comments

Submit an answer


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!

Sign In or Sign Up to Answer

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.

Sri Charan Madhavapeddi
DigitalOcean Employee
DigitalOcean Employee badge
October 12, 2020
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;

Become a contributor for community

Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.

DigitalOcean Documentation

Full documentation for every DigitalOcean product.

Resources for startups and SMBs

The Wave has everything you need to know about building a business, from raising funding to marketing your product.

Get our newsletter

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

The developer cloud

Scale up as you grow — whether you're running one virtual machine or ten thousand.

Get started for free

Sign up and get $200 in credit for your first 60 days with DigitalOcean.*

*This promotional offer applies to new accounts only.