<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/install.fpm.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'ja',
  ),
  'this' => 
  array (
    0 => 'install.fpm.install.php',
    1 => 'インストール',
    2 => 'インストール',
  ),
  'up' => 
  array (
    0 => 'install.fpm.php',
    1 => 'FastCGI Process Manager (FPM)',
  ),
  'prev' => 
  array (
    0 => 'install.fpm.php',
    1 => 'FastCGI Process Manager (FPM)',
  ),
  'next' => 
  array (
    0 => 'install.fpm.configuration.php',
    1 => '設定',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'ja',
    'path' => 'install/fpm/install.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="install.fpm.install" class="sect1">
   <h2 class="title">インストール</h2>
    <div class="sect2" id="install.fpm.install.compiling">
     <h3 class="title">ソースからのコンパイル</h3>
     <p class="para">
      FPM を有効にして PHP をビルドするには、configure 時に <code class="literal">--enable-fpm</code>
      を追加します。
     </p>
     <p class="para">
      そのほかにも FPM 固有のオプションがいくつかあります (いずれも必須ではありません)。
     </p>
     <ul class="itemizedlist">
      <li class="listitem">
       <p class="para">
        <code class="literal">--with-fpm-user</code> - FPM のユーザー (デフォルトは nobody)。
       </p>
      </li>
      <li class="listitem">
       <p class="para">
        <code class="literal">--with-fpm-group</code> - FPM のグループ (デフォルトは nobody)。
       </p>
      </li>
      <li class="listitem">
       <p class="para">
        <code class="literal">--with-fpm-systemd</code> - systemd 統合をアクティブにします (デフォルトは no)。
       </p>
      </li>
      <li class="listitem">
       <p class="para">
        <code class="literal">--with-fpm-acl</code> - POSIX アクセス制御リストを使用します (デフォルトは no)。
       </p>
      </li>
      <li class="listitem">
       <p class="para">
        <code class="literal">--with-fpm-apparmor</code> - AppArmor との統合を有効にします (デフォルトは no)。
       </p>
      </li>
      <li class="listitem">
       <p class="para">
        <code class="literal">--with-fpm-selinux</code> - SELinux との統合を有効にします (デフォルトは no)。
       </p>
      </li>
     </ul>
    </div>

    <div class="sect2">
     <h3 class="title">変更履歴</h3>
     <p class="para">
      <table class="doctable informaltable">
       
        <thead>
         <tr>
          <th>バージョン</th>
          <th>説明</th>
         </tr>

        </thead>

        <tbody class="tbody">
         <tr>
          <td>8.2.0</td>
          <td>
           <code class="literal">--with-fpm-selinux</code> が追加されました。
          </td>
         </tr>

         <tr>
          <td>8.0.0</td>
          <td>
           <code class="literal">--with-fpm-apparmor</code> が追加されました。
          </td>
         </tr>

        </tbody>
       
      </table>

     </p>
    </div>
  </div><?php manual_footer($setup); ?>