diff options
| author | fukachan <fukachan> | 2004-10-02 14:29:45 +0000 |
|---|---|---|
| committer | fukachan <fukachan> | 2004-10-02 14:29:45 +0000 |
| commit | a78974815e70e05350e7ae22dbf027f3f3cef9d4 (patch) | |
| tree | 87f84c48251a67a37bd34087016ad4d414ad454b /fml/doc/ja/tutorial/setup/apache.sgml | |
| parent | a41423101c8300fb88f60932a9de2f31580abb90 (diff) | |
| download | fml8-a78974815e70e05350e7ae22dbf027f3f3cef9d4.tar.gz fml8-a78974815e70e05350e7ae22dbf027f3f3cef9d4.tar.bz2 fml8-a78974815e70e05350e7ae22dbf027f3f3cef9d4.zip | |
bug fix GUI setup.
add comments on apache suexec installation.
Diffstat (limited to 'fml/doc/ja/tutorial/setup/apache.sgml')
| -rw-r--r-- | fml/doc/ja/tutorial/setup/apache.sgml | 67 |
1 files changed, 67 insertions, 0 deletions
diff --git a/fml/doc/ja/tutorial/setup/apache.sgml b/fml/doc/ja/tutorial/setup/apache.sgml new file mode 100644 index 00000000..cfd513be --- /dev/null +++ b/fml/doc/ja/tutorial/setup/apache.sgml @@ -0,0 +1,67 @@ +<!-- + $FML$ +--> + + +<chapter id="setup.apache"> + <title> + apache の設定 + </title> + + +<warning> + +<para> +fml8 CGI の内部構造については +<link linkend="cgi.internal.method"> +<xref linkend="cgi.internal.method"> +</link> +を参照して下さい。 +</para> + +</warning> + + +<sect id="setup.apache.suexec"> + <title> + apache で suexec を使う + </title> + +<para> +suexec 利用可能な apache を作る必要があります。 +configure を実行する際に、 +<screen> +configure --enable-suexec --suexec-caller=www +</screen> +などとします。 +ここでは suexec を呼ことが可能なユーザが www です。 +このユーザには、この用途専用のものを用意して下さい。 +</para> + +<para> +インストール後、~ユーザ/cgi-bin/ を許すように httpd.conf を +設定する必要があります。 +<screen> +<Directory /home/*/*/public_html> + AllowOverride FileInfo AuthConfig Limit + Options MultiViews Indexes SymLinksIfOwnerMatch IncludesNoExec ExecCGI + <Limit GET POST OPTIONS PROPFIND> + Order allow,deny + Allow from 特定のホスト + </Limit> +</Directory> + +<IfModule mod_mime.c> + ... 略 ... + + AddHandler cgi-script .cgi + + ... 略 ... +</IfModule> +</screen> +</para> + +</sect1> + + +</chapter> |
