I have a lot of CGI
web applications under apache2
, which have complex jQueryUI
powered interfaces and corresponding perl backend, based upon CGI::Application
framework.
For 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 those apps psgi
, which is easy, and somehow run those under Apache->ProxyPass/Starman
- Should I run Starman for every app using lots of ports for all of them?
- Should I somehow use mapping url with
Plack::App::URLMap
and how? - Should I create one single app out of all those hundreds to run it with Starman
- Is there another way to do it?