Perlスクリプトを利用する2015/05/11 |
CGI を有効にして Perlスクリプトが利用できるようにします。
|
|
[1] | Perl をインストールします。 |
root@www:~# aptitude -y install perl
|
[2] | Apache2 の設定です。任意のディレクトリでCGIが使えるように設定します。 |
root@www:~#
vi /etc/apache2/mods-enabled/dir.conf # 2行目:ディレクトリ名のみでアクセスできるファイル名を設定 DirectoryIndex index.html index.cgi
root@www:~#
vi /etc/apache2/mods-enabled/mime.conf # 219行目:コメント解除し、CGIとして扱う拡張子を設定 AddHandler cgi-script .cgi .pl
root@www:~#
vi /etc/apache2/sites-enabled/000-default.conf
ServerAdmin webmaster@srv.world
DocumentRoot /var/www/html # 13行目あたりに追記
<Directory "/var/www/html">
AllowOverride All Options +ExecCGI Require all granted </Directory>
root@www:~#
root@www:~# a2enmod cgid Enabling module cgid. To activate the new configuration, you need to run: service apache2 restart systemctl restart apache2 |
[3] | CGIテストページを作成して動作確認をします。以下のようなページが表示されればOKです。 |
root@www:~#
vi /var/www/html/index.cgi #!/usr/bin/perl print "Content-type: text/html\n\n"; print "<html>\n<body>\n"; print "<div style=\"width: 100%; font-size: 40px; font-weight: bold; text-align: center;\">\n"; print "CGI Test Page"; print "\n</div>\n"; print "</body>\n</html>\n"; chmod 705 /var/www/html/index.cgi |
Sponsored Link |