Hi DigitalOceanteam,
I followed this instruction to set up Nginx on Debian (via Linode platform) https://www.digitalocean.com/community/tutorials/how-to-install-nginx-on-debian-10 Everything is good until the last step where it shows 403 instead of the index.html (typing mydomain.com).
I’m pretty stuck. I’d be grateful if you can help me detect what the problem is.
Best, Ethan
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.
Hi there,
Make sure that you assign ownership of the directory in which the
index.html
file is.Also, the
index.html
file must be in the root configured directory that you added. So, if your config looks like this:Then the
index.html
file should be in the/var/www/your_domain/html
directory.If you do all of this and the 403 still shows up, then check the Nginx error log to get some more information on what the problem could be. To do that just run this command:
Let me know if this helps.
Regards,
Boyan
That’s awesome. It works, many thanks for your detailed instructions. It saved me!