Apache / Starman - how to implement many different web applications with a single virtual host

I have many web applications CGI

in apache2

which have complex frontend interfaces jQueryUI

and a corresponding perl server based on the CGI::Application

framework.

To the user, it looks like this:

  • //localsrv.lan/some_report_xls
  • //localsrv.lan/some_insert_db
  • //localsrv.lan/some_perl_plsql_stuff etc ...

Now I want to turn these apps psgi

, which is easy, and somehow run them underApache->ProxyPass/Starman

  • Should I run Starman for each application, using multiple ports for all of them?
  • Do I have to use the mapping url in any way Plack::App::URLMap

    and how?
  • Do I have to create one application from all these hundreds in order to run it from Starman
  • Is there any other way to do this?
+3


source to share





All Articles