bonjour,

j'ai un petit soucis avec une config apache (version2.4)
j'ai une host qui fonctionne nickel en mode apache
la même config avec fpm j'ai une erreur 500

le log d'apache :

Request exceeded the limit of 10 internal redirects due to probable configuration error

voici ma config:

<VirtualHost *:80>

  DocumentRoot "/home/api/www/public"
  ServerName master.rhc5.phpnet.org

  <Directory />
    Options FollowSymLinks
    AllowOverride None
    Require all granted
  </Directory>

  <Directory "/home/api/www/public">
    Options Indexes FollowSymLinks
    AllowOverride None
    Require all granted
  </Directory>

  <IfModule mod_rewrite.c>
    RewriteEngine On
    RedirectMatch ^/$ http://master.rhc5.phpnet.org/master/
    RewriteCond %{REQUEST_FILENAME} -s [OR]
    RewriteCond %{REQUEST_FILENAME} -l [OR]
    RewriteCond %{REQUEST_FILENAME} -d
    RewriteRule ^.*$ - [NC,L]
    RewriteRule ^.*$ /index.php [NC,L]
  </IfModule>

  ErrorLog    ${APACHE_LOG_DIR}/api-error.log
  LogLevel    warn
  CustomLog   ${APACHE_LOG_DIR}/api-access.log combined

</VirtualHost>

En mode apache quand je tape l'url master.rhc5.phpnet.org je suis rediriger normalement vers mon controller d'action master
en fpm j'ai une erreur 500 + boucle infinie :/
Si quelqu'un a une idée je suis preneur

Merci

Aucune réponse