How can I run Perl on web servers?

前端 未结 4 1071
别跟我提以往
别跟我提以往 2021-01-14 00:29

I am very new to Perl and I wonder how to run it on webservers and all. (or if it can)

4条回答
  •  天命终不由人
    2021-01-14 01:32

    You clearly want to use PSGI/Plack to deploy your Perl application. This is the way to go in 2010, you should not go another way.

    PSGI/Plack lets you deploy the application under any webserver you like, see http://plackperl.org for details.

    You'll also have to choose an application framework that supports PSGI. There are many; among them is Dancer a micro-framework designed to be as effortless as possible for the developer.

    See http://dancer.sukria.net for details.

提交回复
热议问题