Created
October 19, 2010 12:48
-
-
Save clkao/634134 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<Location /> | |
SetHandler perl-script | |
PerlResponseHandler Plack::Handler::Apache2 | |
PerlSetVar psgi_app /path/to/app.psgi | |
</Location> | |
# Optional, preload the application in the parent like startup.pl | |
<Perl> | |
use Plack::Handler::Apache2; | |
Plack::Handler::Apache2->preload("/path/to/app.psgi"); | |
</Perl> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment