Reputation: 662
I am looking for a package containig Apache Web server, PostgreSQL database and Perl for Windows (7, 10). Does anybody know such a package, possibly portable?
Upvotes: 0
Views: 116
Reputation: 164809
I don't believe so, but those sorts of bundles are not as necessary as they once were. They're no longer as wielded together. Instead, get the pieces.
I'd recommend skipping Apache unless you specifically need it, it's likely quite a bit more complex than you need. Instead, write web server generic code using Plack. Use a Perl web server for development, and then the application can be deployed to whatever web server you'd like for production. Using a Perl web framework such as Dancer will make that all much simpler.
Upvotes: 1