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:
> >> [...]
> >> >
> >> >
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
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
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
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
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
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
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
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