From b59f1eab6973c84801f815ffdb30b22f9e843a91 Mon Sep 17 00:00:00 2001
From: Yoshiki Hayashi
Date: Thu, 6 Jun 2002 07:26:00 +0000
Subject: [PATCH] Update transformations.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95545 13f79535-47bb-0310-9956-ffa450edef68
---
docs/manual/mod/mod_proxy.html.en | 18 +++++
docs/manual/mod/mod_userdir.html.ja.jis | 100 ++++++++++++++++++++++++
docs/manual/mod/mpm_winnt.html.ja.jis | 12 +++
3 files changed, 130 insertions(+)
create mode 100644 docs/manual/mod/mod_userdir.html.ja.jis
create mode 100644 docs/manual/mod/mpm_winnt.html.ja.jis
diff --git a/docs/manual/mod/mod_proxy.html.en b/docs/manual/mod/mod_proxy.html.en
index 845ba1fddd..735a120ec3 100644
--- a/docs/manual/mod/mod_proxy.html.en
+++ b/docs/manual/mod/mod_proxy.html.en
@@ -48,6 +48,7 @@ dangerous both to your network and to the Internet at large.
What other functions are useful for an intranet proxy server?
+How can I make the proxy talk HTTP/1.0 and disable keepalives?
@@ -220,6 +221,23 @@ proxy service, Apache can return a redirect response and send the client
to the correct, fully qualified, server address. This is the preferred method
since the user's bookmark files will then contain fully qualified hosts.
+
+
+For circumstances where you have a application server which doesn't implement
+keepalives or HTTP/1.1 properly, there are 2 environment variables which when
+set send a HTTP/1.0 with no keepalive. These are set via the SetEnv
directive.
+These are the 'force-proxy-request-1.0' and 'proxy-nokeepalive' notes.
+
+
+<location /buggyappserver/ >
+ProxyPass http://buggyappserver:7001/foo/
+SetEnv force-proxy-request-1.0 1
+SetEnv proxy-nokeepalive 1
+</location>
+
+
+
Description: Ports that are allowed to CONNECT through
the proxy Syntax: AllowCONNECT port [port ] ... Default: AllowCONNECT 443 563
Context: server config, virtual host Status: Extension Module: mod_proxy
diff --git a/docs/manual/mod/mod_userdir.html.ja.jis b/docs/manual/mod/mod_userdir.html.ja.jis
new file mode 100644
index 0000000000..2b3f6d0ce7
--- /dev/null
+++ b/docs/manual/mod/mod_userdir.html.ja.jis
@@ -0,0 +1,100 @@
+mod_userdir- Apache HTTP Server Apache HTTP Server Version 2.0 Apache モジュール mod_userdir 概要
+このモジュールは、
+http://example.com/~user/
+構文を使ってユーザ専用ディレクトリにアクセスできるようにします。
+ディレクティブ 参照
+
+ UserDir
ディレクティブは、
+ ユーザのドキュメントへのリクエストを受けた時に使う
+ ユーザのホームディレクトリ中の、実際のディレクトリを
+ 設定します。
+ directory-filename には次のどれかを指定します:
+
+
+ ディレクトリ名か下に示すようなパターン。
+
+ disabled
キーワード。
+ enabled
キーワード (下記参照) で明示的に
+ 指定されたユーザ以外の
+ 全ての ユーザ名-ディレクトリ変換を
+ しないようにします。
+
+ disabled
キーワードと、スペース区切りのユーザ名リスト。
+ このリスト中に含まれるユーザ名に対しては、たとえ
+ enabled
節にあったとしても、
+ 決して ディレクトリ変換は行われません。
+
+ enebled
キーワードとスペース区切りのユーザ名リスト。
+ 全体では変換が無効になっていたといたとしても、
+ これらのユーザ名にはディレクトリ変換が行われます。
+ ただし、disabled
節にもあれば変換はされません。
+
+
+
+ もし enabled
も disabled
+ キーワードも UserDir
に現われていなければ、
+ 引数はファイル名パターンとして扱われ、
+ 名前からディレクトリへの変換の指定を行なう時に使われます。
+ http://www.foo.com/~bob/one/two.html
+ へのリクエストは次のように変換されます:
+
+
+UserDir ディレクティブ
+変換後のパス
+UserDir public_html ~bob/public_html/one/two.html
+UserDir /usr/web /usr/web/bob/one/two.html
+UserDir /home/*/www /home/bob/www/one/two.html
+
+
+ 次のディレクティブはクライアントに対してリダイレクトを
+ 送信します:
+
+
+UserDir ディレクティブ
+変換後のパス
+UserDir http://www.foo.com/users http://www.foo.com/users/bob/one/two.html
+UserDir
+http://www.foo.com/*/usr http://www.foo.com/bob/usr/one/two.html
+UserDir
+http://www.foo.com/~*/ http://www.foo.com/~bob/one/two.html
+
+
+
+ このディレクティブを使うときは注意してください;
+ "UserDir ./
" は
+ "/~root
" から "/
" へマップしますが、
+ これは望ましい動作ではないでしょう。
+ "UserDir disabled root
" 宣言を
+ 設定の中に含めておくことを強くお薦めします。
+ 追加情報に Directory
+ ディレクティブや
+ セキュリティ
+ Tips のページもご覧下さい。
+
+
+追加の例:
+
+少数のユーザのみが UserDir
+ディレクトリを利用し、それ以外には利用させたくない場合は
+次を使いましょう:
+
+
+UserDir disabled
+UserDir enabled user1 user2 user3
+
+
+大部分のユーザは UserDir
ディレクトリを利用するけれど、
+少数の人は不許可にしたい場合は、次を使いましょう:
+
+
+UserDir enabled
+UserDir disabled user4 user5 user6
+
+
+Apache HTTP Server Version 2.0
\ No newline at end of file
diff --git a/docs/manual/mod/mpm_winnt.html.ja.jis b/docs/manual/mod/mpm_winnt.html.ja.jis
new file mode 100644
index 0000000000..2be77082ba
--- /dev/null
+++ b/docs/manual/mod/mpm_winnt.html.ja.jis
@@ -0,0 +1,12 @@
+mpm_winnt- Apache HTTP Server Apache HTTP Server Version 2.0 Apache モジュール mpm_winnt 説明: このマルチプロセッシングモジュールは Windows NT
+向けに最適化されています。 ステータス: MPM モジュール識別子: mpm_winnt_module
概要
+ このマルチプロセッシングモジュール (MPM)
+ は Windows NT でのデフォルトになります。
+ 一つの制御用プロセスを用い、これが一つの子プロセスを起動し、
+ そして子プロセスがリクエストを取り扱うためにスレッドを
+ 起動します。
+ディレクティブ Apache HTTP Server Version 2.0
\ No newline at end of file
--
2.50.1