仮想ディレクトリについて
関連情報
< Back | 1 2 3 4 5 6 7 | Next>
Apache の仮想ディレクトリの変更手順

Apache でいう 「 仮想ディレクトリ 」 は、『 Script Alias 』 ( CGI実行可能ディレクトリ ) として、Apache の設定ファイル 「 httpd.conf 」 で定義されます。

 

■ インストールディレクトリの確認

デヂエ のインストール時に、インストーラーは、「 インストールディレクトリの設定 」 でインストールディレクトリを初期表示します。

=============== インストールディレクトリの確認 ===============

/usr/local/www/cgi-bin/cbdb                        

このディレクトリをインストール先にしてよろしいですか?

[Y]: はい / N: 別ディレクトリを設定 / Q: インストール終了 :
======== Confirming Install Directory Location ===============

/usr/local/www/cgi-bin/cbdb 

To install the files in this directory, press Enter. To install the files to a different directory, Press N.

[Y]: Yes / N: Select Different Directory / Q:Quit :

 

■ httpd.confの内容

インストーラーで初期表示されたディレクトリと異なる場所に デヂエ をインストールする場合は、 そのディレクトリが 「 httpd.conf 」 で 『 Script Alias 』 に設定されている必要があります。

例 )
インストールするディレクトリを 「 /cgi/cybozu/cbdb 」 、エイリアス を 「 cybozu 」 とする場合

  「 httpd.conf 」 に、以下の赤字部分を追加します。

# ScriptAlias: This controls which directories contein server scripts.
# ScriptAliases are essentially the same as Aliases, except that
# documents in the realname directory are treated as applications and
# run by dhe server when requested rather than as documents sent to the client.
# The same rules about trailing "/" apply to ScriptsAlias directives as to
# Alias.
#

ScriptAlias /cgi-bin/ "/ver/www/cgi-bin/"
<Directory "/ver/www/cgi-bin">
   AllowOverride None
   Options ExecCGI
   Order allow,deny
</Directory>

ScriptAlias /cybozu/ "/cgi/cybozu/cbdb/"
       ~~~~~~~~~~
        ↑エイリアス名
<Directory "/cgi/cybozu">
  AllowOverride None
  Options ExecCGI
  Order allow,deny
  Allow from all
</Directory>

 

■ インストールディレクトリの入力

上記のように 「 httpd.conf 」 の 『 ScriptAlias 』 に設定してあるディレクトリは、インストール先として指定することが可能です。

=============== インストールディレクトリの入力 ===============

インストール先のディレクトリを入力して Enter を押してください。
(Q: インストールの中止)

インストール先ディレクトリ :/cgi/cybozu/cbdb



インストールディレクトリが、/cgi/cybozu/cbdb 、エイリアス が cybozu の場合のアクセス URL は、

http://サーバー名 or サーバーのIPアドレス/cybozu/db.cgi?

になります。


< Back | 1 2 3 4 5 6 7 | Next>
   
   
   
   
   
   
商標、著作権および法律上の注意事項について個人情報の取り扱いについて本サイトのプライバシーステートメントサイボウズホーム
記載された商品名、各製品名は各社の登録商標または商標です。
Copyright(C) Cybozu,Inc.All rights reserved.