設定ファイルを編集。
sudo vim /etc/httpd/conf/httpd.conf
vimが開いたら以下の箇所のコメントを外す。コマンドモードで探すと早いかも(/cgi/g
とか)。
#
AddHandler cgi-script .cgi # 多分ここ?
#
再起動。
sudo service httpd restart
以下のようなファイルを作成。
hello.cgi
#!/usr/bin/env python
# -*- coding: utf-8 -*-
print "Content-Type: text/plain"
print
print "hello world!"
http://[アドレス]/hello.cgi にアクセス。表示されると思いきや・・・・
Forbidden
You don't have permission to access /hello.cgi on this server.
Permissionと書かれているので、chmod 755 hello.cgi
とかをやってみたが変わらず。