Texan has asked for the wisdom of the Perl Monks concerning the following question:

I am pretty confident in my perl scripting, but alas, I wish to use perl on the web. How do I set up apache and such to do this?? I welcome any good advice or links on this subject. Thanks

20041116 Edit by ysth: retitle from: Apache/mod_perl

Replies are listed 'Best First'.
Re: Setting up apache with mod_perl
by VSarkiss (Monsignor) on Nov 16, 2004 at 02:04 UTC

    Boy, it's great getting a simple question with a simple answer. ;-)

    Your question is very general. There's a ton of information in the area, so it's more a matter of sifting through it. The obvious place to start for Apache would be http://apache.org, and for mod_perl, http://perl.apache.org. Of course, a visit to O'Reilly couldn't hurt.

    Two particularly useful books in my experience are, "Apache, the definitive guide", and "Writing Apache Modules with Perl and C", both from O'Reilly.

    Beyond that, you'll have to be more specific with what you mean by "I wish to use perl on the web".

Re: Setting up apache with mod_perl
by BUU (Prior) on Nov 16, 2004 at 02:53 UTC
Re: Setting up apache with mod_perl
by j.goor (Acolyte) on Nov 16, 2004 at 11:34 UTC
    AFAIK its simply a matter of installing a standard Apache distro, get mod_perl to work and add some Alias and/or ScriptAlias(es).
    This will simply cover your Perl-question.(but not the security tweaking and all other stuff ofcourse. Therefore you will need the books as mentioned earlier)
    Rgds,
    John
Re: Setting up apache with mod_perl
by nite_man (Deacon) on Nov 16, 2004 at 12:36 UTC

    ---
    Michael Stepanov aka nite_man

    It's only my opinion and it doesn't have pretensions of absoluteness!

    Have a look the most popular tools to embedded Perl into HTML page:

  • Mason
  • Embperl
  • Template Toolkit
  • because if you are planning to develop complicated web application it's better to use some of those tools than useing CGI.