I'm looking for the way to run 2 apps in
Dancer2 using
Plack::Handler::Apache2 without any trick as "using a proxy to different web servers", or "join two apps in one", etc.
Is it possible?. I thought Dancer2 had solved it (instead of Dancer1).
With the following configuration, I can only run one application correctly. If I start both, I have a mess ...
# App1
<Location /app1>
SetHandler perl-script
PerlHandler Plack::Handler::Apache2
PerlSetVar psgi_app path_to_app1/bin/
app.pl</Location>
# App2Thanks a lot.