Re: A server that runs django

2017-02-22 Thread Antonis Christofides
Hi, For many people, including me, nginx is the recommended web server for Django. See, for example, my blog post, "Which components should I use in production? ". You may also be interested in a webinar

Re: A server that runs django

2017-02-22 Thread Tim Graham
Nope, there's nothing wrong with using nginx and Django. On Wednesday, February 22, 2017 at 10:53:45 AM UTC-5, Luvpreet Singh wrote: > > Yeah I am running my django on nginx. I just wanted to make sure that if > I'm doing wrong by doing so? > > > On Tuesday, February 7, 2017 at 1:08:01 AM UTC+5:3

Re: A server that runs django

2017-02-22 Thread Luvpreet Singh
Yeah I am running my django on nginx. I just wanted to make sure that if I'm doing wrong by doing so? On Tuesday, February 7, 2017 at 1:08:01 AM UTC+5:30, Dário Carvalho wrote: > > Hi everyone. So, I now understand a little more about how django works and > I was thinking about how can I run a

Re: A server that runs django

2017-02-22 Thread Tim Graham
Sure, do a web search for "nginx django" to find instructions. On Wednesday, February 22, 2017 at 10:41:07 AM UTC-5, Luvpreet Singh wrote: > > Well, I completely agree with you. But can we use Nginx servers? > > > On Tuesday, February 7, 2017 at 1:08:01 AM UTC+5:30, Dário Carvalho wrote: >> >> Hi

Re: A server that runs django

2017-02-22 Thread Luvpreet Singh
Well, I completely agree with you. But can we use Nginx servers? On Tuesday, February 7, 2017 at 1:08:01 AM UTC+5:30, Dário Carvalho wrote: > > Hi everyone. So, I now understand a little more about how django works and > I was thinking about how can I run a site built with django in my own > py

Re: A server that runs django

2017-02-06 Thread Dário Carvalho
Thanks guy. I'll consider your recommendation. Em segunda-feira, 6 de fevereiro de 2017 20:09:50 UTC-2, Tim Graham escreveu: > > Follow the deployment instructions at > https://docs.djangoproject.com/en/stable/howto/deployment/wsgi/. > > I would not recommend writing your own web server. If you

Re: A server that runs django

2017-02-06 Thread Tim Graham
Follow the deployment instructions at https://docs.djangoproject.com/en/stable/howto/deployment/wsgi/. I would not recommend writing your own web server. If you want to see what's involved, gunicorn.org is a Python server. On Monday, February 6, 2017 at 2:38:01 PM UTC-5, Dário Carvalho wrote: >

Re: A server that runs django

2017-02-06 Thread Dário Carvalho
Thanks. It's useful for me. Although what I really want to is to create my own server using python for it. Em segunda-feira, 6 de fevereiro de 2017 19:12:30 UTC-2, invincibly cool escreveu: > > You could use www.Python anywhere.com to host your sites with their > domain names. > Although a web

A server that runs django

2017-02-06 Thread invincibly cool
You could use www.Python anywhere.com to host your sites with their domain names. Although a website stays on the web for 3 months in the trial. -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving e

A server that runs django

2017-02-06 Thread Dário Carvalho
Hi everyone. So, I now understand a little more about how django works and I was thinking about how can I run a site built with django in my own python's server. Someone know how can I do such thing? I thought about using asyncio and/or socketserver or even http with socketserver. Anyway, thanks