Hello, my friends. I have a problem and please help me. When I type sudo cat /etc/nginx/sites-enabled/default I get an error like this: cat: /etc/nginx/sites-enabled/default: No such file or directory How can I resolve this problem? Please help me.
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
Hi there,
In addition to what @alexdo mentioned, I could also suggest checking the content of the /etc/nginx/sites-enabled/
as your config file might have a different name depending on your setup:
ls -l /etc/nginx/sites-enabled/
Then you will see a list of files there and you can use the cat
command to see the content of the specific file:
cat /etc/nginx/sites-enabled/your_website_name
Note: change the
your_website_name
with the name of the file that you see after running thels
command
Regards, Bobby
Hello, @aslanhuseynov9
Have you recently configured the LEMP stack droplet? The following is usually a symlink /etc/nginx/sites-enabled/default
from /etc/nginx/sites-available/default
Note: If you ever need to restore the default configuration, you can do so by recreating the symbolic link, like this:
- sudo ln -s /etc/nginx/sites-available/default /etc/nginx/sites-enabled/
You can check our existing tutorial on how to configure the LEMP stack here:
Regards, Alex
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.