I created a new django web app at myhost.webfactional.com/myapp/ and it works fine I can also see the django administration login page at myhost.webfactional.com/myapp/admin/ but when I try to login typing my username and password the server return to http://myhost.webfactional.com/admin/ with 405 Not Allowed (nginx) error. How can I access my django app admin page? Thanks. asked 09 Nov '11, 16:22 Moreno |
Try moving Django to the root URL '/'. It appears as there is a redirect error where it is redirecting to an invalid URL, in this case /admin, which should be /myapp/admin. You can also try following this documentation to apply a fix, answered 09 Nov '11, 17:09 johns |