httpd.conf 修正 ver 02

前へ |次へ

httpd.conf 修正

へたら 修正をしよう 変更内容は

$ diff -s httpd.conf httpd.conf~
1,8c1
< # Sorry Bad Edit !!! 
< 
< # Edit ver 02 : Thu Sep 27 23:35:00 JST 2007
< # use cgi user directory 
< # Edit ver 01 : Thu Sep 20 23:12:34 JST 2007
< #  /* First setting almost default conditions  */
< 
< # **********************************************
---
> #
635,640d627
< # Add user use cgi Directory set up Thu Sep 27 23:42:05 JST 2007 ; ver02
< <Directory /home/*/public_html/cgi-bin>
< Options ExecCGI
< SetHandler cgi-script 
< </Directory> 
< # Add user use cgi Directory set up Thu Sep 27 23:42:05 JST 2007 ; ver02

となる

変更に した参考資料

インストールした自前の manual を web 出見るか 若しくは 以下の所でも 可能であるが

http://httpd.apache.org/docs/2.0/ja/howto/cgi.html

ユーザディレクトリの cgi-bin サブディレクトリの すべてのファイルを CGI プログラムとして指定したい場合には 以下のようなものを使います。

<Directory /home/*/public_html/cgi-bin>
Options ExecCGI
SetHandler cgi-script 
</Directory> 

再掲すると 上記の ものに よりました。該当する場所は

httpd.conf 修正箇所 抜粋

抜粋ですが

# CGI directory exists, if you have that configured.
#
<Directory "/var/data/www/apache2/cgi-bin">
    AllowOverride None
    Options None
    Order allow,deny
    Allow from all
</Directory>/*  これ以降に 追加 */

# Add user use cgi Directory set up Thu Sep 27 23:42:05 JST 2007 ; ver02
<Directory /home/*/public_html/cgi-bin>
Options ExecCGI
SetHandler cgi-script 
</Directory> 
# Add user use cgi Directory set up Thu Sep 27 23:42:05 JST 2007 ; ver02

ということで 後は確認試験を 行います。

にゃんたろう 拝!

2007年 9月24日 (月) 21:12:24 JST 作成


前へ |次へ

httpd.conf 修正 ver 02

Copyright © 2007. nyantarou All Rights Reserved.