[Subject Prev][Subject Next][Thread Prev][Thread Next][Subject Index][Thread Index]

[webdav-jp:0737] Re: [dav-dev-jp:00371] Apache 2.0.44 + patches RPM



  吉山です。

On Sun, 26 Jan 2003 03:51:03 +0900
吉山 晃 <yosshy@xxxxxxxxxxxx> wrote:

> ■使用方法
> 初期設定で /var/www/html 下を書けるようにしてありますが、実は
> /var/www/html は所有者が apache であるため書き込めません。

  嘘書きました。
  chown_user は /var/www/html 下が WebDAV フォルダと認識するよう設定してあ
りますが、/etc/httpd/conf/httpd.conf にはその旨の設定がしてありません。

  参考までに、私の設定(変更点)を書いておきます。
  この設定では、/etc/httpd/conf/.htpasswd にベーシック認証用のパスワードデ
ータベースファイルが存在します。認証しない場合は、<LimitExcept>〜
</LimitExcept> 間をコメントアウトして下さい。

---
# This should be changed to whatever you set DocumentRoot to.
#
<Directory "/var/www/html">

#
# Possible values for the Options directive are "None", "All",
# or any combination of:
#   Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI Multiviews
#
# Note that "MultiViews" must be named *explicitly* --- "Options All"
# doesn't give it to you.
#
# The Options directive is both complicated and important.  Please see
# http://httpd.apache.org/docs-2.0/mod/core.html#options
# for more information.
#
#    Options Indexes FollowSymLinks

#
# AllowOverride controls what directives may be placed in .htaccess files.
# It can be "All", "None", or any combination of the keywords:
#   Options FileInfo AuthConfig Limit
#
    AllowOverride None

#
# Controls who can get stuff from this server.
#
    Order allow,deny
    Allow from all

    DAV on

    Options Indexes +Includes
    <LimitExcept GET HEAD OPTIONS>
    AuthType Basic
    AuthName WebDAV
    AuthUserFile /etc/httpd/conf/.htpasswd
    AuthGroupFile /dev/null
        Require valid-user
    </LimitExcept>

</Directory>
---
---
吉山あきら <yosshy@xxxxxxxxxxxx>