Re: Daemonize django server

2013-03-01 Thread Tim Johnson
* Tom Evans [130301 06:44]: > On Thu, Feb 28, 2013 at 6:23 PM, Tim Johnson wrote: > > I'm having a hell of a time getting fastcgi to work on my mac, so <...> > > I didn't reply to your fastcgi posts yesterday, as you were attempting > to have everything spawned by the web server, which is not ho

Re: Daemonize django server

2013-03-01 Thread Tom Evans
On Thu, Feb 28, 2013 at 6:23 PM, Tim Johnson wrote: > I'm having a hell of a time getting fastcgi to work on my mac, so > for the time being I'll just stick with using the django server. > > Is it possible to daemonize the server? I would prefer that in some > cases. > > From https://docs.djangopr

Re: Daemonize django server

2013-02-28 Thread Tim Johnson
* carlos [130228 13:15]: > you try http://gunicorn.org/ is fast and easy to deploy :) It was as simple as easy_install gunicorn then switch to the app directory and ran gunicorn_django --daemon --pid djpid --bind=127.0.0.1:8001 I have a daemonized process at localhost:8001 and to shut it dow

Re: Daemonize django server

2013-02-28 Thread Tim Johnson
* carlos [130228 13:15]: > you try http://gunicorn.org/ is fast and easy to deploy > > Cheers Thank you! That looks great. -- Tim tim at tee jay forty nine dot com or akwebsoft dot com http://www.akwebsoft.com -- You received this message because you are subscribed to the Google Groups "Dj

Re: Daemonize django server

2013-02-28 Thread carlos
you try http://gunicorn.org/ is fast and easy to deploy Cheers On Thu, Feb 28, 2013 at 1:22 PM, Tim Johnson wrote: > * Josh Cartmell [130228 09:48]: > > This (http://software.clapper.org/daemonize/) may do what you want and > > can be installed with homebrew on a mac, but if this is in any wa

Re: Daemonize django server

2013-02-28 Thread Tim Johnson
* Josh Cartmell [130228 09:48]: > This (http://software.clapper.org/daemonize/) may do what you want and > can be installed with homebrew on a mac, but if this is in any way a > production setting, I wouldn't do it. The dev server hasn't gone > through any security audits and could and probably d

Re: Daemonize django server

2013-02-28 Thread Josh Cartmell
This (http://software.clapper.org/daemonize/) may do what you want and can be installed with homebrew on a mac, but if this is in any way a production setting, I wouldn't do it. The dev server hasn't gone through any security audits and could and probably does have unknown weaknesses in that regar

Daemonize django server

2013-02-28 Thread Tim Johnson
I'm having a hell of a time getting fastcgi to work on my mac, so for the time being I'll just stick with using the django server. Is it possible to daemonize the server? I would prefer that in some cases. >From https://docs.djangoproject.com/en/dev/ref/django-admin/ I see daemonize as an option