eagle-fox / dawMp

WIP
Apache License 2.0
4 stars 2 forks source link

#11 Dockerfile ahora respeta el mod apache rewrite #30

Closed peseoane closed 9 months ago

peseoane commented 9 months ago

Para que funcione el enrutado de la API

<IfModule mod_rewrite.c>
    <IfModule mod_negotiation.c>
        Options -MultiViews -Indexes
    </IfModule>

    RewriteEngine On

    # Handle Authorization Header
    RewriteCond %{HTTP:Authorization} .
    RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]

    # Redirect Trailing Slashes If Not A Folder...
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteCond %{REQUEST_URI} (.+)/$
    RewriteRule ^ %1 [L,R=301]

    # Handle Front Controller...
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteRule ^ index.php [L]
</IfModule>

Obviamente hay que añadir RUN a2enmod rewrite al Dockerfile-php.