Re: [modwsgi] Multiple Django Instances in same Application Group

2012-09-24 Thread vishwajeet singh
options, visit this group at http://groups.google.com/group/modwsgi?hl=en. -- Vishwajeet Singh +91-9657702154 | dextrou...@gmail.com | http://bootstraptoday.com Twitter: http://twitter.com/vishwajeets | LinkedIn: http://www.linkedin.com/in/singhvishwajeet -- You received this message because

Re: [modwsgi] Multiple Django Instances in same Application Group

2012-09-24 Thread vishwajeet singh
On Mon, Sep 24, 2012 at 4:57 PM, Roshan Mathews rmath...@gmail.com wrote: On Mon, Sep 24, 2012 at 4:44 PM, vishwajeet singh dextrou...@gmail.com wrote: On Mon, Sep 24, 2012 at 12:32 PM, Roshan Mathews rmath...@gmail.com wrote: If I want to run, say 1000 django sites, all using the same

[modwsgi] How To Setup Basic Authentication with Django mod_wsgi

2012-07-31 Thread Vishwajeet
Dear Graham, This was due on me from long time, I had promised that I will put together our discussions on setting up basic authentication while using Django mod_wsgi, so finally it's here, we also had discussed about group authorization, I also have that part but not included in post, if

Re: [modwsgi] Re: Issue with mod_wsgi using trac and subversion 1.7

2012-04-01 Thread vishwajeet singh
Dumpleton graham.dumple...@gmail.com wrote: What are the names of all the DAV modules loaded in Apache? It may not be mod_dav_svn that needs to be first but one of the core DAV modules. So in try mod_dav.c instead. Also maybe mod_dav_fs. Graham On 27 March 2012 17:01, vishwajeet

Re: [modwsgi] Re: Issue with mod_wsgi using trac and subversion 1.7

2012-03-27 Thread vishwajeet singh
, mod_dav_svn.c, NULL }; This will ensure that SVN module gets a look in first. I tried this but does not seem to work, one thing I have in my configuration that my svn configurations are inside named vhost if that makes a difference. Graham On 27 March 2012 15:22, vishwajeet singh

[modwsgi] Re: Issue with mod_wsgi using trac and subversion 1.7

2012-03-26 Thread Vishwajeet
I am facing the same issue with django+apache+mod_wsgi+svn 1.7. I posted it on svn mailing list and got following reply mod_wsgi is probably intercepting the POST request intended for mod_dav_svn and not passing it on. Subversion 1.7.0 had a similar problem, it tried to process non-Subversion

Re: [modwsgi] Re: Issue with mod_wsgi using trac and subversion 1.7

2012-03-26 Thread vishwajeet singh
to workaround this issue. Graham On 27 March 2012 05:27, Vishwajeet dextrou...@gmail.com wrote: I am facing the same issue with django+apache+mod_wsgi+svn 1.7. I posted it on svn mailing list and got following reply mod_wsgi is probably intercepting the POST request intended

Re: [modwsgi] Controlling access to static content

2011-01-24 Thread vishwajeet singh
= os.path.join('/downloads/', filename) response = HttpResponse() # 200 OK response['Content-Type']= response['X-Accel-Redirect'] = abs_filename return response On Mon, Jan 24, 2011 at 11:26 AM, vishwajeet singh dextrou...@gmail.com wrote: On Mon, Jan 24, 2011 at 9:36

[modwsgi] error building mod_wsgi for python2.6 on centos x86_64

2010-11-06 Thread Vishwajeet
Hello, I am facing this problem while building mod_wsgi on centos x, I went through the documentation as well i tried to search on the web but none of the solutions helped me. I have compiled python from source and it's running perfectly fine. Any help in this regard is highly appreciated, I am

[modwsgi] Re: error building mod_wsgi for python2.6 on centos x86_64

2010-11-06 Thread Vishwajeet
, I picked the .so file from one of the setups and moved to ec2 instance and it seems to be working fine. ~Carl On Sat, Nov 6, 2010 at 10:46 AM, Vishwajeet dextrou...@gmail.com wrote: Hello, I am facing this problem while building mod_wsgi on centos x, I went through the documentation

[modwsgi] Re: How to define Authorization script

2010-04-12 Thread Vishwajeet
On Apr 12, 10:22 am, Graham Dumpleton graham.dumple...@gmail.com wrote: On 11 April 2010 16:41, Vishwajeet dextrou...@gmail.com wrote: On Apr 11, 9:45 am, Graham Dumpleton graham.dumple...@gmail.com wrote: On 11 April 2010 05:16, Vishwajeet dextrou...@gmail.com wrote: I don't

[modwsgi] Re: How to define Authorization script

2010-04-12 Thread Vishwajeet
On Apr 12, 2:15 pm, Graham Dumpleton graham.dumple...@gmail.com wrote: On 12 April 2010 17:45, Vishwajeet dextrou...@gmail.com wrote: It seems therefore that in Apache 2.2 you just can't do it without defining a full blown authentication handler, which mod_wsgi doesn't provide support

Re: [modwsgi] mod_wsgi redhat installation error

2010-04-11 Thread vishwajeet singh
this group at http://groups.google.com/group/modwsgi?hl=en. -- Vishwajeet Singh +91-9657702154 | dextrou...@gmail.com | http://bootstraptoday.com Twitter: http://twitter.com/vishwajeets | LinkedIn: http://www.linkedin.com/in/singhvishwajeet -- You received this message because you

[modwsgi] Re: How to define Authorization script

2010-04-10 Thread Vishwajeet
, I tried it in location block as well. On Apr 10, 3:59 pm, Graham Dumpleton graham.dumple...@gmail.com wrote: On 10 April 2010 04:33, Vishwajeet dextrou...@gmail.com wrote: On Apr 9, 6:00 pm, Graham Dumpleton graham.dumple...@gmail.com wrote: On 9 April 2010 22:23, Graham Dumpleton

[modwsgi] How to define Authorization script

2010-04-09 Thread Vishwajeet
Hi, I have script which is currently doing authentication and it's working fine. My question is how can i define an authorization script to check access ? I tried browsing through all directives but none of seems to mention about authorization. Regards, Vishwajeet Singh -- You received

Re: [modwsgi] How to define Authorization script

2010-04-09 Thread vishwajeet singh
app. Hope that makes me more clear, thank you so much for your response. On Fri, Apr 9, 2010 at 2:22 PM, Graham Dumpleton graham.dumple...@gmail.com wrote: On 9 April 2010 18:25, Vishwajeet dextrou...@gmail.com wrote: Hi, I have script which is currently doing authentication and it's

[modwsgi] Re: How to define Authorization script

2010-04-09 Thread Vishwajeet
On Apr 9, 6:00 pm, Graham Dumpleton graham.dumple...@gmail.com wrote: On 9 April 2010 22:23, Graham Dumpleton graham.dumple...@gmail.com wrote: On 9 April 2010 22:19, Vishwajeet dextrou...@gmail.com wrote: On Apr 9, 3:32 pm, Graham Dumpleton graham.dumple...@gmail.com wrote: On 9