Stop django admin
Hi all,
After I switch to apache, I cannot run myphpadmin. I wonder how I can vist them simultaneously or stop django admin? Thanks so much!
sudo yum install mod_wsgi
to install the apache and the module necessary for serving your django app.Alias /static /var/www/mysite/static <Directory /var/www/mysite/static> Order deny,allow Allow from all </Directory> WSGIScriptAlias / /var/www/mysite/apache/django.wsgi
Page not found (404)
Request Method: | GET |
---|---|
Request URL: | http://ec2-xx-xxx-x-xx.compute-1.amazonaws.com/phpmyadmin |
Using the URLconf defined in mysite.urls
, Django tried these URL patterns, in this order:
- ^polls/
- ^admin/
The current URL, phpmyadmin
, didn't match any of these.
You're seeing this error because you have DEBUG = True
in your Django settings file. Change that to False
, and Django will display a standard 404 page.
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscribe@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.
0 Comments:
Post a Comment
Subscribe to Post Comments [Atom]
<< Home