<?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 => 'de',
  ),
  'this' => 
  array (
    0 => 'install.fpm.install.php',
    1 => 'Installation',
    2 => 'Installation',
  ),
  '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 => 'Konfiguration',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'de',
    '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">Installation</h2>
    <div class="sect2" id="install.fpm.install.compiling">
     <h3 class="title">Kompilierung des Quellcodes</h3>
     <p class="para">
      Um FPM im Ihrem PHP Build zu aktivieren, müssen Sie <code class="literal">--enable-fpm</code>
      der Konfigurationszeile hinzufügen.
     </p>
     <p class="para">
      Es gibt verschiedene andere FPM-spezifsche Einstellungen (alle sind optional):
     </p>
     <ul class="itemizedlist">
      <li class="listitem">
       <p class="para">
        <code class="literal">--with-fpm-user</code> - setzt den FPM Nutzer (Standard - nobody).
       </p>
      </li>
      <li class="listitem">
       <p class="para">
        <code class="literal">--with-fpm-group</code> - setzt die FPM Gruppe (Standard - nobody).
       </p>
      </li>
      <li class="listitem">
       <p class="para">
        <code class="literal">--with-fpm-systemd</code> - aktiviert die systemd-Integration (Standard - no).
       </p>
      </li>
      <li class="listitem">
       <p class="para">
        <code class="literal">--with-fpm-acl</code> - verwende POSIX Access Control Lists (Standard - no).
       </p>
      </li>
      <li class="listitem">
       <p class="para">
        <code class="literal">--with-fpm-apparmor</code> - aktiviert die AppArmor-Integration (Standard - no).
       </p>
      </li>
      <li class="listitem">
       <p class="para">
        <code class="literal">--with-fpm-selinux</code> - aktiviert die SELinux-Integration  (Standard - no).
       </p>
      </li>
     </ul>
    </div>

    <div class="sect2">
     <h3 class="title">Changelog</h3>
     <p class="para">
      <table class="doctable informaltable">
       
        <thead>
         <tr>
          <th>Version</th>
          <th>Beschreibung</th>
         </tr>

        </thead>

        <tbody class="tbody">
         <tr>
          <td>8.2.0</td>
          <td>
           Die Option <code class="literal">--with-fpm-selinux</code> wurde hinzugefügt.
          </td>
         </tr>

         <tr>
          <td>8.0.0</td>
          <td>
           Die Option <code class="literal">--with-fpm-apparmor</code> wurde hinzugefügt.
          </td>
         </tr>

        </tbody>
       
      </table>

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