ApacheでPerlを使う方法

提供: Ubuntu入門
移動: 案内検索
スポンサーリンク

Apache で Perl を動かす方法を紹介します。

読み方

Perl
ぱーる
Apache
あぱっち

概要

Apache で Perl を動かす方法を紹介します。

インストール

sudo apt install libapache2-mod-perl2

設定

/etc/apache2/apache2.conf

IncludeOptional mods-available/cgi.load

設定を変更したら、Apache の再起動が必要です。

sudo apachectl restart

使い方

test.cgi

#!/usr/bin/perl
print "Content-type: text/html\n\n";
 
print "Hello\n";

パーミッションの設定

apache と異なるオーナーで cgi のファイルを置く場合には、パーミッションの other の x (実行) を立てておく必要があります。

$ chmod 755 test.cgi

オーナの実行権限だけ与えればよいのであれば、以下の通りです。

$ chmod +x test.cgi

関連項目




スポンサーリンク