Hello
I am new to Webware :) and I searched the archive for a solution to my
problem - if it's in there my apologies I must have missed it - but really I did
search the Archive.
Environment
--------------------
I have development web server running Redhat Linux AS 2.1 - apache 1.3
Webware 0.8.1 - python 2.3 and 4 to 5 developers on the machine at any given
time.
Apache is setup with virtual servers and each developers has there own
Webware AppServer working dir - where they configure the port number
for their instance of the AppServer.
Problem
--------------------
For python servlets and cgi the developers can specify the port numbers of
there AppServer.
*.psp always seem to go to port 8086 and in the apache httpd.conf
- I am not sure how to set it up to go to the port the developer
specifies????
Any help would be greatly appreciated :)
Thanxs
Leigh
httpd.conf
--------------------
LoadModule webkit_module
/usr/lib/apache/mod_webkit.so
AddModule mod_webkit.c <VirtualHost *> ServerName my.cool.server.com DocumentRoot /home/www #How do I tell Apache to go
to port 8181 for psp pages?
AddType text/psp
.psp
AddHandler psp-handler .psp # AppServer for python
servlets are running on port 8181
<Location
/WK> WKServer localhost 8181 SetHandler webkit-handler </Location> </VirtualHost>
|