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!
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.
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:Then you will see a list of files there and you can use the
cat
command to see the content of the specific file: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:
You can check our existing tutorial on how to configure the LEMP stack here:
Regards, Alex