Re: [BangPypers] Multiple Django app with nginx

2016-05-19 Thread Sathishkumar Duraisamy
On Fri, May 20, 2016 at 12:59 AM, Gora Mohanty wrote: > On 20 May 2016 at 00:40, Sathishkumar Duraisamy > wrote: > > On Thu, May 19, 2016 at 11:50 PM, Gora Mohanty > wrote: > > > >> On 19 May 2016 at 09:01, Sathishkumar Duraisamy < > bewithsath...@gmail.com> > >> wrote: > >> [...] > >> > > >> >

Re: [BangPypers] Multiple Django app with nginx

2016-05-19 Thread Gora Mohanty
On 20 May 2016 at 00:40, Sathishkumar Duraisamy wrote: > On Thu, May 19, 2016 at 11:50 PM, Gora Mohanty wrote: > >> On 19 May 2016 at 09:01, Sathishkumar Duraisamy >> wrote: >> [...] >> > >> > >> > May be you are right. I am really sorry, with many django developers here >> > in our local python

Re: [BangPypers] Multiple Django app with nginx

2016-05-19 Thread Sathishkumar Duraisamy
On Thu, May 19, 2016 at 11:50 PM, Gora Mohanty wrote: > On 19 May 2016 at 09:01, Sathishkumar Duraisamy > wrote: > [...] > > > > > > May be you are right. I am really sorry, with many django developers here > > in our local python list, I hoped to get solution. > > I do think it is off-topic: It

Re: [BangPypers] Multiple Django app with nginx

2016-05-19 Thread Gora Mohanty
On 19 May 2016 at 09:27, Saurabh Kumar wrote: [...] > > You might want use `proxy_pass`[0][1]. > > Something like: > > ``` > location /app1 { > proxy_pass http://localhost:9000/; > } > location /app2 { > proxy_pass http://localhost:8000/; > } [...] Contrary to OP's original statement, this is

Re: [BangPypers] Multiple Django app with nginx

2016-05-19 Thread Gora Mohanty
On 19 May 2016 at 09:01, Sathishkumar Duraisamy wrote: [...] > > > May be you are right. I am really sorry, with many django developers here > in our local python list, I hoped to get solution. I do think it is off-topic: It really has to do with understanding how the proxy_pass directive in ngin

Re: [BangPypers] Multiple Django app with nginx

2016-05-19 Thread Sathishkumar Duraisamy
On Thu, May 19, 2016 at 9:27 AM, Saurabh Kumar wrote: > On Thu, May 19, 2016 at 12:41 AM, Sathishkumar Duraisamy < > bewithsath...@gmail.com> wrote: > > > Hi All, > > > > In Apache with help of modwsgi module we can mount may application like > > > > WSGIScriptAlias /app1 /usr/local/www/wsgi-scr

Re: [BangPypers] Multiple Django app with nginx

2016-05-19 Thread Saurabh Kumar
On Thu, May 19, 2016 at 12:41 AM, Sathishkumar Duraisamy < bewithsath...@gmail.com> wrote: > Hi All, > > In Apache with help of modwsgi module we can mount may application like > > WSGIScriptAlias /app1 /usr/local/www/wsgi-scripts/myapp1.wsgi > WSGIScriptAlias /app2 /usr/local/www/wsgi-scripts/m

Re: [BangPypers] Multiple Django app with nginx

2016-05-18 Thread Sathishkumar Duraisamy
On Thu, May 19, 2016 at 1:31 AM, Gora Mohanty wrote: > On 19 May 2016 at 00:41, Sathishkumar Duraisamy > wrote: > > Hi All, > > > > In Apache with help of modwsgi module we can mount may application like > > > > WSGIScriptAlias /app1 /usr/local/www/wsgi-scripts/myapp1.wsgi > > WSGIScriptAlias

Re: [BangPypers] Multiple Django app with nginx

2016-05-18 Thread Gora Mohanty
On 19 May 2016 at 00:41, Sathishkumar Duraisamy wrote: > Hi All, > > In Apache with help of modwsgi module we can mount may application like > > WSGIScriptAlias /app1 /usr/local/www/wsgi-scripts/myapp1.wsgi > WSGIScriptAlias /app2 /usr/local/www/wsgi-scripts/myapp2.wsgi > > What is the similar a