はじめての自宅サーバ構築 - Fedora/CentOS -
Last Update 2018/05/30
[ 更新履歴 ] [ サイト マップ ] [ 質問掲示板 ] [ 雑談掲示板 ] [ リンク ]
トップ >> 質問掲示板

 このスレッドはクローズされています。記事の閲覧のみとなります。

 Webスペースを貸し出す方法
日時: 2005/06/11 21:24
名前: Jacktis

はじめまして。

私は今自宅サーバーでHPを公開しており
友人にWebスペースを貸そうと思っております。

そこで質問なのですが、他人にWebスペースを貸し出す際
HPを置くディレクトリは何処に設置するのが良いでしょうか?
また、FTPでの接続の際のパスワードやアカウント等は
どのように設定するのでしょうか?FTPDはvsFTPDを使用しています。

よろしくお願いします。
メンテ

Page:  [1] [2]

■ コンテンツ関連情報

 Re: Webスペースを貸し出す方法 ( No.6 )
日時: 2005/06/15 18:59
名前: わた

それはアパッチの設定ですね。
httpd.conf

ユーザーディレクトリのところです。

/etc/gttpd/conf/httpd.conf の設定ですね。

メンテ
 Re: Webスペースを貸し出す方法 ( No.7 )
日時: 2005/06/16 16:02
名前: 管理者

ftpに関する設定は上記で説明させて頂いたので、割愛させて頂きます。

ユーザホームページ「/~ユーザ」を公開させる為に関する部分
apache設定ファイル:「/etc/httpd/conf/httpd.conf」

# The path to the end user account 'public_html' directory must be
# accessible to the webserver userid. This usually means that ~userid
# must have permissions of 711, ~userid/public_html must have permissions
# of 755, and documents contained therein must be world-readable.
# Otherwise, the client will only receive a "403 Forbidden" message.
#
# See also: http://httpd.apache.org/docs/misc/FAQ.html#forbidden
#
<IfModule mod_userdir.c>
  #
  # UserDir is disabled by default since it can confirm the presence
  # of a username on the system (depending on home directory
  # permissions).
  #
  UserDir enabled ユーザ名  ← 公開させたいユーザ名

  #
  # To enable requests to /~user/ to serve the user's public_html
  # directory, remove the "UserDir disable" line above, and uncomment
  # the following line instead:
  #
  UserDir public_html     ← 「/~ユーザ」でアクセスされた時のファイルの場所

</IfModule>

ユーザホームページのアクセス設定
#
# Control access to UserDir directories. The following is an example
# for a site where these directories are restricted to read-only.
#
<Directory /home/*/public_html>
  AllowOverride FileInfo AuthConfig Limit
  Options MultiViews Indexes SymLinksIfOwnerMatch IncludesNoExec
  <Limit GET POST OPTIONS>
    Order allow,deny
    Allow from all
  </Limit>
  <LimitExcept GET POST OPTIONS>
    Order deny,allow
    Deny from all
  </LimitExcept>
</Directory>


共通設定
#
# DirectoryIndex: sets the file that Apache will serve if a directory
# is requested.
#
# The index.html.var file (a type-map) is used to deliver content-
# negotiated documents. The MultiViews Option can be used for the
# same purpose, but it is much slower.
#
DirectoryIndex index.html index.shtml index.html.var ← URLの末尾が「/」でアクセスされた時、表示させるファイル


上記の設定になっていますでしょうか?
メンテ
 Re: Webスペースを貸し出す方法 ( No.8 )
日時: 2005/06/16 21:49
名前: Jacktis

こんばんは

ApacheのUserdir設定を./に変えたところ、
~ユーザ名/でアクセスできるようになりました。

管理者様、わた様、ご丁寧にありがとうございました。
メンテ

Page:  [1] [2]

■ その他

ページ先頭へ

Copyright(©)2004-2018 First home server construction. All Right Reserved.