Question

How to fix 404 not found nginx/1.21.6 problem?

Note that I put this file in this path after editing it etc/nginx/sites-enabled/book.conf

server { listen 90 ; listen [::]:90 ;

server_name localhost:8300;

location /(assets/|images/|img/|javascript/|js/|css/|stylesheets/|flash/|media/|static/|robots.txt|humans.txt|favicon.ico) {
root /books/public; #this is where my static files reside
access_log off;
expires 24h;
}

location / {
    proxy_set_header X-Real-IP $remote_addr;
    proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
    proxy_redirect off;
    proxy_pass http://localhost:8300;
    proxy_http_version 1.1;
    proxy_set_header Upgrade $http_upgrade;
    proxy_set_header Connection 'upgrade';
    proxy_set_header Host $host;
    proxy_cache_bypass $http_upgrade;

    try_files $uri $uri/ /index.php?q=$uri&$args;
}

}

After that I did nginx relod

But there is still a problem


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.

Bobby Iliev
Site Moderator
Site Moderator badge
July 19, 2022

Hi there,

Is there any specific reason why you’ve changed the listen port to port 90? If this is intentional, are you accessing your website via yourdoamin.com:90?

Otherwise, if you do not specify the port after your hostname, the default Nginx server block would be loaded.

Besides, that I could also suggest taking a look at the following tutorial on how to troubleshoot common Nginx problems:

https://www.digitalocean.com/community/questions/how-to-troubleshoot-common-nginx-issues-on-linux-server

Best,

Bobby

Try DigitalOcean for free

Click below to sign up and get $200 of credit to try our products over 60 days!

Sign up