I have set up my website www.gojainyatra.com on digital ocean. I’m using nginx. everything is working fine, but some urls (like https://gojainyatra.com/dharamshala/firstshala/vlogs/2019/6/20/5/9/46/test/) are not being served and give error - “Not Found The requested resource was not found on this server.”
My configuration file is
upstream app_server {
server unix:/home/gojainyatra/run/gunicorn.sock fail_timeout=0;
}
server {
listen 80;
server_name gojainyatra.com www.gojainyatra.com;
keepalive_timeout 5;
client_max_body_size 4G;
access_log /home/gojainyatra/logs/nginx-access.log;
error_log /home/gojainyatra/logs/nginx-error.log;
location /static/ {
alias /home/gojainyatra/staticfiles/;
}
# checks for static file, if not found proxy to app
location / {
try_files $uri @proxy_to_app;
}
location @proxy_to_app {
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
proxy_redirect off;
proxy_pass http://app_server;
}
}
please help, I’m new to development and don’t have much idea what is going wrong.
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!
Django doesn’t serve files itself, you have to setup a location block in nginx for that like you did in /static.
location /dharamshala/ {
alias /home/gojainyatra/whatever-your-folder-dharamshala-is/;
}
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.