ApacheでPerlを使う方法

提供: Ubuntu入門
2015年11月7日 (土) 18:28時点におけるDaemon (トーク | 投稿記録)による版 (ページの作成:「Apache で Perl を動かす方法を紹介します。 '''読み方''' ;Perl:ぱーる ;Apache:あぱっち __TOC__ == 概要 == Apache で Perl を動かす方法を...」)

(差分) ←前の版 | 最新版 (差分) | 次の版→ (差分)
移動: 案内検索
スポンサーリンク

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

関連項目




スポンサーリンク