RE: SSL with Django, Apache, mod_wsgi and nginx

2010-08-10 Thread Colleen A Josephson
, Apache, mod_wsgi and nginx On Tue, Aug 10, 2010 at 5:00 PM, Colleen A Josephson <cjos...@mit.edu<mailto:cjos...@mit.edu>> wrote: Unfortunately I'm not very well versed in proxying and SSL, etc. I'm not sure I understand how mod WSGi eliminates the need for SSLRedirect. I implemented

RE: SSL with Django, Apache, mod_wsgi and nginx

2010-08-10 Thread Colleen A Josephson
, Colleen A Josephson <cjos...@mit.edu<mailto:cjos...@mit.edu>> wrote: I just set up a site that uses nginx to server static media and Apache/mod_wsgi to deal with the Django stuff. How would I go about dealing with SSL? Would the setup be on the nginx end or the Apache end? Could

SSL with Django, Apache, mod_wsgi and nginx

2010-08-10 Thread Colleen A Josephson
I just set up a site that uses nginx to server static media and Apache/mod_wsgi to deal with the Django stuff. How would I go about dealing with SSL? Would the setup be on the nginx end or the Apache end? Could I still use SSLRedirect middleware? Thanks, -Colleen -- You received this message

SSL with Django, Apache, mod_wsgi and nginx

2010-08-10 Thread Colleen A Josephson
I just set up a site that uses nginx to server static media and Apache/mod_wsgi to deal with the Django stuff. How would I go about dealing with SSL? Would the setup be on the nginx end or the Apache end? Could I still use SSLRedirect middleware? Thanks, -Colleen -- You received this message

RE: User Registration: Looking for tips

2010-07-29 Thread Colleen A Josephson
Actually, just yesterday I extended the django-registration form to deal with my profile @ registration time For reference I used: http://dmitko.ru/?p=546 and the link you previously posted, http://dewful.com/?p=70 It didn't require much code. The hardest part was sifting through some of the

[SOLVED]: Caught TypeError while rendering: unhashable type: 'dict'

2010-07-26 Thread Colleen A Josephson
', {'template_name': 'reg\ istration/login.html', 'SSL' : True}), From: django-users@googlegroups.com [django-us...@googlegroups.com] On Behalf Of Colleen A Josephson [cjos...@mit.edu] Sent: Monday, July 26, 2010 2:35 PM To: django-users@googlegroups.com Subject

Caught TypeError while rendering: unhashable type: 'dict'

2010-07-26 Thread Colleen A Josephson
I'm trying to use the SSLMiddleware. I have a login page whose urlconf is: (r'^login/', 'django.contrib.auth.views.login', {'template_name': 'reg\ istration/login.html'}, {'SSL' : True}), When I go to that page, I get the error: TemplateSyntaxError at /login/ Caught TypeError while rendering:

Caught TypeError while rendering: unhashable type: 'dict'

2010-07-26 Thread Colleen A Josephson
I'm trying to use the SSLMiddleware. I have a login page whose urlconf is: (r'^login/', 'django.contrib.auth.views.login', {'template_name': 'reg\ istration/login.html'}, {'SSL' : True}), When I go to that page, I get the error: TemplateSyntaxError at /login/ Caught TypeError while rendering:

Viewing user profile fields in the admin

2010-07-19 Thread Colleen A Josephson
I have a user profile to collect and store additional information about my users. I would like to be able to view (and sort by) these attributes when I look at a list of my users in the admin. With the way my admin.py is written now, I can see the addition attributes when I create/modify an

broken default view of the django admin site

2010-07-15 Thread Colleen A Josephson
Hello, I'm very new to django. I just set up my first site using apache and mod_wsgi. The admin area does not seem to have the nice, neat blue default theme...its horrifically ugly and difficult to navigate. Here's a screenshot of the login area: http://web.mit.edu/~cjoseph/Public/fugly.png