Hello, I spent most of the afternoon trying to deploy my django app to webfaction. The thing is, I followed every step on Getting Started except the one for static under another app, so my problem is I'm not really sure if my site does not work because of not doing this static step, or it is something else. I have following configs:
On the control panel I have the following Website:
I don't know what could be wrong, but if I change the Contents, to django(the default app) and I got to my URL username.webfactional.com I see the Apache page, something like It works ! If I change Contents back to my_app I see 404, not even the django 404 url not found, I get 404 Not Found The requested URL / was not found on this server. Please help me. Edit: I checked the webfaction documentation for this, but I was not making any of those mistakes. asked 16 Jan '13, 22:07 PepperoniPizza |
A 404 Error with a Django application -- but not a Django 404 -- indicates that the error is actually occurring before it hits your Django application. Most of the time, this is caused by an incorrect
But where Hope that helps! answered 17 Jan '13, 01:38 ryans ♦♦ That was it, thanks a lot.
(17 Jan '13, 08:23)
PepperoniPizza
|