Re: Https with runserver

2011-09-22 Thread Bjarni Rúnar Einarsson
Following up to myself (sorry for the spam) - please replace "yourname" with something you invented yourself. Everyone signing up for yourname.pagekite.me is really not going to work very well. :-) 2011/9/22 Bjarni Rúnar Einarsson : > Another way, would be to use PageKite. The service provides a w

Re: Https with runserver

2011-09-22 Thread Bjarni Rúnar Einarsson
Another way, would be to use PageKite. The service provides a wildcard SSL cert for all *.pagekite.me names. From the command line: curl http://pagekite.net/pk/pagekite-0.4.py >pagekite.py python pagekite.py 8000 yourname.pagekite.me Answer the account creation questions and then go to htt

Re: Https with runserver

2011-09-14 Thread Gelonida N
On 09/15/2011 01:44 AM, Russell Keith-Magee wrote: > 2011/9/14 Simon Bächler : >> Any news considering HTTPS and runserver? > > What "News" are you expecting? > > The Django project has made no secret of the fact that we don't > consider runserver to be a "real" webserver. It isn't intended for >

Re: Https with runserver

2011-09-14 Thread Aljoša Mohorović
if you need to simulate https for development, like for facebook apps, you can setup apache proxy. something like: ProxyPass / http://localhost:8000/ retry=1 ProxyPassReverse / http://localhost:8000/ ProxyPreserveHost On ErrorLog ${APACHE_LOG_DIR}/error.log

Re: Https with runserver

2011-09-14 Thread Russell Keith-Magee
2011/9/14 Simon Bächler : > Any news considering HTTPS and runserver? What "News" are you expecting? The Django project has made no secret of the fact that we don't consider runserver to be a "real" webserver. It isn't intended for production use. We haven't spent any time or effort auditing it f

Https with runserver

2011-09-14 Thread Simon Bächler
Any news considering HTTPS and runserver? I tried the stunnel method but I get the message: Line 5: End of section https: SSL server needs a certificate. Stunnel also complains about the openssl version. I have 0.9.8r installed. The build of 1.0 fails on OSX. When I then try to access the page I

Re: Serving https with runserver

2010-03-01 Thread Kenneth Gonsalves
On Monday 01 Mar 2010 5:55:41 pm Jirka Vejrazka wrote: > >> Then maybe web server is the best option. In all cases you have to > >> configure something until someday 'runserver' come with ssl support. > > I think that no one would really object if runserver was SSL-aware, > or you could have a

Re: Serving https with runserver

2010-03-01 Thread Jirka Vejrazka
>> Then maybe web server is the best option. In all cases you have to >> configure something until someday 'runserver' come with ssl support. I think that no one would really object if runserver was SSL-aware, however people requesting it need to be aware that having an SSL-aware webserver is si

Re: Serving https with runserver

2010-03-01 Thread Gonzalo Delgado
El 01/03/10 08:18, Adnan Sadzak escribió: > Then maybe web server is the best option. In all cases you have to > configure something until someday 'runserver' come with ssl support. It doesn't seem like that day will ever come: """ DON'T use this server in anything resembling a production environ

Re: Serving https with runserver

2010-03-01 Thread Adnan Sadzak
Then maybe web server is the best option. In all cases you have to configure something until someday 'runserver' come with ssl support. On Mon, Mar 1, 2010 at 11:56 AM, Ian Lewis wrote: > I can think of a number of reasons why you would want to test SSL > behavior on your local machine before r

Re: Serving https with runserver

2010-03-01 Thread Ian Lewis
I can think of a number of reasons why you would want to test SSL behavior on your local machine before running it on a production server. Setup can be pretty annoying for one. I wrote a blog post on how to do this very thing a while back. I used stunnel, as Janusz mentioned, to test SSL redirect

Re: Serving https with runserver

2010-03-01 Thread Gonzalo Delgado
El 01/03/10 07:07, cool-RR escribió: > Adnan, I'm really baffled by your response. No, my reasons for using > SSL here is not because I'm afraid someone will sniff my data, We are > talking here about `runserver`, which is the development server which > is never used for production. The goal of `ru

Re: Serving https with runserver

2010-03-01 Thread cool-RR
Adnan, I'm really baffled by your response. No, my reasons for using SSL here is not because I'm afraid someone will sniff my data, We are talking here about `runserver`, which is the development server which is never used for production. The goal of `runserver` is to be able to easily test how you

Re: Serving https with runserver

2010-02-28 Thread Adnan Sadzak
If it's on your local machine there is no big sense to use ssl unles you are paranoid. If someone can sniff local traffic, then ssl is useless. Anyway, as Janusz said http://www.stunnel.org/ On Mon, Mar 1, 2010 at 1:06 AM, Janusz Harkot wrote: > So you can use stunnel: http://www.stunnel.org/ > >

Re: Serving https with runserver

2010-02-28 Thread Janusz Harkot
So you can use stunnel: http://www.stunnel.org/ J. -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-us...@googlegroups.com. To unsubscribe from this group, send email to django-users+unsubscr...@googl

Re: Serving https with runserver

2010-02-28 Thread cool-RR
I'm not using Apache on my development machine and I don't want to use it. I enjoy the low headache factor of runserver. But it'll be nicer if it served through https as well. On Mar 1, 12:53 am, Andrej wrote: > because you need to load apache ssl gear. Set up your normal virtual > host and then

Re: Serving https with runserver

2010-02-28 Thread Andrej
because you need to load apache ssl gear. Set up your normal virtual host and then use reverse proxy: ProxyPass / http://localhost:8000/ ProxyPassReverse / http://localhost:8000/ On Feb 28, 5:09 pm, cool-RR wrote: > Why doesn't runserver automatically serve in https as well as http? It

Serving https with runserver

2010-02-28 Thread cool-RR
Why doesn't runserver automatically serve in https as well as http? It would have been useful. Ram. -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-us...@googlegroups.com. To unsubscribe from this gro