Thank you David and Mike,
I think the Apache2 server setup for QP is a legitimate area for QP questions.
I think I got the QP-scgi side correct now. Now I have to fix the
Apache again. It was working WITHOUT the scgi entry in the config
dict with the server accessed as http://mydomain:8003.
I just wish the docs contained a working Apache2 config for the proto
example, so we can concentrate on writing insanely great QP
applications.
Assuming that the scgi_address field ("127.0.0.1", "3007") was added
to the config dict,
How do I complete or correct the following skeleton for a virtual host
which should be accessed as
http://mydomain/proto?
or as http://proto.mydomain?
or even as http://mydomain:8003?
LoadModule scgi_module /usr/lib/apache2/modules/mod_scgi.so # Ok.
AddDefaultCharset utf-8
ServerName www.mydomain
ServerAlias mydomain
DocumentRoot /var/www/
#ErrorDocument 500 /500.html
#ErrorDocument 404 /404.html
# handle all requests throug SCGI
# SCGIHandler On # not allowed here !
# SCGIServer 127.0.0.1:3007 # not allowed here!
SCGIMount /dynamic 127.0.0.1:3007 # no error here.
ProxyPass /proto scgi://127.0.0.1:8003/ # no error here.
But I can't get the browser to display the scgi app.
Again, TIA.
-Ernie.