[modwsgi] Re: Mod_WSGI with X86_64 CentOS (?)

2010-10-20 Thread crumble
You compiled you python statically. I think it is preferred to use dynamic libraries as stated in documentation with `--enable-shared`. Anyway there are python26 and python26-devel available in centOS 5.5 which I use to compile mod_wsgi on CentOS for python2.6. On 20 oct, 01:54, Kaen

Re: [modwsgi] Re: What is the license of the code on Wiki pages?

2010-10-20 Thread Clodoaldo Neto
2010/10/19 Graham Dumpleton graham.dumple...@gmail.com: 2010/10/13 Tomasz Zieliński tom.ziel...@gmail.com: On 27 Wrz, 15:26, Tomasz Zieliński tom.ziel...@gmail.com wrote: On 27 Wrz, 02:56, Graham Dumpleton graham.dumple...@gmail.com wrote: As to whether there is a licence on documentation.

Re: [modwsgi] Re: What is the license of the code on Wiki pages?

2010-10-20 Thread Jason Garber
I can only guess that Graham uses the Google Code wiki for it because it is easy for him (critically important), and that I doubt he wrote the examples even thinking about someone wanting to use it for commercial use... Tomasz, why don't you just learn from the examples and develop your own

[modwsgi] index.wsgi index.py

2010-10-20 Thread nitin chandra
Hello All, I have set up mod_wsgi + apache on Ubuntu with SSL enabled. And it works. I am able to see Hello World. Now i have also keyed in index.py as follows and done a soft link to index.wsgi. i really want to work in this way and p, just bear with me till i get it to run for few months

[modwsgi] [django] Multiple django apps on one vhost

2010-10-20 Thread Jan Koprowski
Hi, I'm trying to host multiple django applications under one Apache VirtualHost. I try do this for ReviewBoard (Django application to code review). I red http://code.djangoproject.com/wiki/django_apache_and_mod_wsgi but after lecture I'm confused. My VirtualHost configuration looks as follow:

Re: [modwsgi] [django] Multiple django apps on one vhost

2010-10-20 Thread Graham Dumpleton
What is the actual problem you are having besides being confused? Unless we know what the actual error is your having, can't really give any advice. Graham On 21 October 2010 04:46, Jan Koprowski jan.koprow...@gmail.com wrote: Hi,  I'm trying to host multiple django applications under one

Re: [modwsgi] Re: What is the license of the code on Wiki pages?

2010-10-20 Thread Graham Dumpleton
2010/10/21 Clodoaldo Neto clodoaldo.pinto.n...@gmail.com: 2010/10/19 Graham Dumpleton graham.dumple...@gmail.com: 2010/10/13 Tomasz Zieliński tom.ziel...@gmail.com: On 27 Wrz, 15:26, Tomasz Zieliński tom.ziel...@gmail.com wrote: On 27 Wrz, 02:56, Graham Dumpleton graham.dumple...@gmail.com

Re: [modwsgi] index.wsgi index.py

2010-10-20 Thread nitin chandra
The following is from my apache/log/error_log [Wed Oct 20 21:22:57 2010] [error] [client 192.168.1.9] Target WSGI script not found or unable to stat: /home/dev/wsgi-scrip [Wed Oct 20 21:26:25 2010] [error] [client 192.168.1.9] Target WSGI script not found or unable to stat: /home/dev/wsgi-scrip

Re: [modwsgi] index.wsgi index.py

2010-10-20 Thread Graham Dumpleton
On 21 October 2010 16:16, nitin chandra nitinchand...@gmail.com wrote: The following is from my apache/log/error_log [Wed Oct 20 21:22:57 2010] [error] [client 192.168.1.9] Target WSGI script not found or unable to stat: /home/dev/wsgi-scrip [Wed Oct 20 21:26:25 2010] [error] [client

[modwsgi] Re: [django] Multiple django apps on one vhost

2010-10-20 Thread Jan Koprowski
I'm sorry :( I was act like a noob :( Review Board after entering address reviewboard/abc/ should redirect me toreviewboard/dashboard/ and ask me to login. Instead that I get page informing me (404 Page): The page you were looking for does not exist. If you're pretty sure this

Re: [modwsgi] Re: [django] Multiple django apps on one vhost

2010-10-20 Thread Graham Dumpleton
I don't really know how ReviewBoard is different to Django, but when mounting at sub URL in Django, you sometimes need to modify 'LOGIN_URL' in Django settings file to explicitly list the mount point as prefix to the login URL. See: