Nginx+bottle+uwsgi Server Returning 404 On Every Request
I have setup an Nginx server with following configuration: server { listen 8080; server_name localhost; location / { include uwsgi_params;
Solution 1:
Are you sure that NGINX and UWSGI are working properly? Lot's of things could be wrong, I recommend you to follow this guide: https://uwsgi.readthedocs.org/en/latest/tutorials/Django_and_nginx.html
It's a step by step to setup NGINX and UWSGI with Django but I'm pretty sure you can apply it to any other web app than Django.
Post a Comment for "Nginx+bottle+uwsgi Server Returning 404 On Every Request"