I'm trying to access my Webware app from the Apache2 root directory. I've looked at the Wiki instructions. Here they are below.
**********************************************************
1. Add your apache Document root as the default Webkit context
2. Add your webkit location:
<Location /WK>
WKServer localhost 8086
SetHandler webkit-handler
</Location>
3. Now make Apache associate py files with the /wk location
Action py-serverpages /WK/
AddType py-serverpages .py
**********************************************************
Here is my Apache config.
LoadModule webkit_module modules/mod_webkit.so
<Location /servlet>
WKServer localhost 8086
SetHandler webkit-handler
</Location>
Action py-serverpages /servlet/
AddType py-serverpages .psp
AddType py-serverpages .py
***********************************************************
I've done all of these things, but I'm confused. When I make a request,
say Main.py, I get this error FROM WEBKIT.
The page you requested, */Main.py*, was not found on this server.
Webkit is processing the request, but it is appending it with '/'. Any
ideas why?
Also, what is the point of adding Apache's root to my WebKit config? Is
it to serve up static content from Apache?
Randall
signature.asc
Description: This is a digitally signed message part
