summaryrefslogtreecommitdiff
path: root/fml/doc/ja/tutorial/setup/apache.sgml
diff options
context:
space:
mode:
authorfukachan <fukachan>2004-10-02 14:29:45 +0000
committerfukachan <fukachan>2004-10-02 14:29:45 +0000
commita78974815e70e05350e7ae22dbf027f3f3cef9d4 (patch)
tree87f84c48251a67a37bd34087016ad4d414ad454b /fml/doc/ja/tutorial/setup/apache.sgml
parenta41423101c8300fb88f60932a9de2f31580abb90 (diff)
downloadfml8-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.sgml67
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>
+&lt;Directory /home/*/*/public_html&gt;
+ AllowOverride FileInfo AuthConfig Limit
+ Options MultiViews Indexes SymLinksIfOwnerMatch IncludesNoExec ExecCGI
+ &lt;Limit GET POST OPTIONS PROPFIND&gt;
+ Order allow,deny
+ Allow from 特定のホスト
+ &lt;/Limit&gt;
+&lt;/Directory&gt;
+
+&lt;IfModule mod_mime.c&gt;
+ ... 略 ...
+
+ AddHandler cgi-script .cgi
+
+ ... 略 ...
+&lt;/IfModule&gt;
+</screen>
+</para>
+
+</sect1>
+
+
+</chapter>