admin管理员组

文章数量:1352184

I have Apache running in Docker container with Laravel framework. And it's all good when I try to access my base route "zms.test" configured in hosts file on Windows. It shows my start page. But when I try to access another route like this "zms.test/neighbours" Apache gives me 404 Not Found error (it's not Laravel level error).

My error text

Not Found
The requested URL was not found on this server.

Apache/2.4.62 (Debian) Server at zms.test Port 80

My src/routes/web.php

<?php

use App\Http\Controllers\HomeController;
use Illuminate\Support\Facades\Route;

Route::get('/', [HomeController::class,'index'])->name('home');
Route::get('/neighbours',[HomeController::class,'neighbours'])->name('neighbours');

My src/app/Http/Controllers/HomeController.php

<?php

namespace App\Http\Controllers;

use App\Core\Services\AdsServiceInterface;
use App\Core\Services\UserServiceInterface;
use Illuminate\Http\Request;

class HomeController extends Controller
{
    //it works properly
    public function index(
        UserServiceInterface $userService,
        AdsServiceInterface $adsService
    ){
        $users = $userService->getLastUsers();
        $ads = $adsService->getLastAds();
        return view('home.index',[
                'users'=>$users,
                'ads'=>$ads
            ]
        );
    }

    public function neighbours(){
        return 'neighbours';
    }
}

My Dockerfile at docker/apache/Dockerfile

FROM php:8.3-apache

RUN apt update -y && apt upgrade -y
RUN docker-php-ext-install mysqli pdo pdo_mysql
RUN php -r "copy('', 'composer-setup.php');"
RUN php composer-setup.php
RUN php -r "unlink('composer-setup.php');"
RUN mv composer.phar /usr/local/bin/composer

RUN pecl install xdebug \
    && docker-php-ext-enable xdebug \
    && echo "xdebug.mode=debug" >> /usr/local/etc/php/conf.d/docker-php-ext-xdebug.ini \
    && echo "xdebug.client_host = host.docker.internal" >> /usr/local/etc/php/conf.d/docker-php-ext-xdebug.ini

WORKDIR /var/www/

CMD ["apachectl", "-D", "FOREGROUND"]

EXPOSE 80 443

My docker/docker-compose.yml fragment

web-server:
    build: ./apache
    volumes:
      - ../src:/var/www
      - ./apache/apache-conf/:/etc/apache2/sites-enabled/
    ports:
      - "80:80"
      - "443:443"
    networks:
      - internal

My Apache config file at docker/apache/apache-conf/000-default.conf

<VirtualHost *:80>
        ServerName zms.test

        ServerAdmin webmaster@localhost
        DocumentRoot /var/www/public

        ErrorLog ${APACHE_LOG_DIR}/error.log
        CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>

Maybe it will be useful. My .htaccess file located in public directory of Laravel app near to index.php.

<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}]

    # Handle X-XSRF-Token Header
    RewriteCond %{HTTP:x-xsrf-token} .
    RewriteRule .* - [E=HTTP_X_XSRF_TOKEN:%{HTTP:X-XSRF-Token}]

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

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

I've tried to clear Laravel chache. But it seems Apache error, not Laravel...

I have Apache running in Docker container with Laravel framework. And it's all good when I try to access my base route "zms.test" configured in hosts file on Windows. It shows my start page. But when I try to access another route like this "zms.test/neighbours" Apache gives me 404 Not Found error (it's not Laravel level error).

My error text

Not Found
The requested URL was not found on this server.

Apache/2.4.62 (Debian) Server at zms.test Port 80

My src/routes/web.php

<?php

use App\Http\Controllers\HomeController;
use Illuminate\Support\Facades\Route;

Route::get('/', [HomeController::class,'index'])->name('home');
Route::get('/neighbours',[HomeController::class,'neighbours'])->name('neighbours');

My src/app/Http/Controllers/HomeController.php

<?php

namespace App\Http\Controllers;

use App\Core\Services\AdsServiceInterface;
use App\Core\Services\UserServiceInterface;
use Illuminate\Http\Request;

class HomeController extends Controller
{
    //it works properly
    public function index(
        UserServiceInterface $userService,
        AdsServiceInterface $adsService
    ){
        $users = $userService->getLastUsers();
        $ads = $adsService->getLastAds();
        return view('home.index',[
                'users'=>$users,
                'ads'=>$ads
            ]
        );
    }

    public function neighbours(){
        return 'neighbours';
    }
}

My Dockerfile at docker/apache/Dockerfile

FROM php:8.3-apache

RUN apt update -y && apt upgrade -y
RUN docker-php-ext-install mysqli pdo pdo_mysql
RUN php -r "copy('https://getcomposer./installer', 'composer-setup.php');"
RUN php composer-setup.php
RUN php -r "unlink('composer-setup.php');"
RUN mv composer.phar /usr/local/bin/composer

RUN pecl install xdebug \
    && docker-php-ext-enable xdebug \
    && echo "xdebug.mode=debug" >> /usr/local/etc/php/conf.d/docker-php-ext-xdebug.ini \
    && echo "xdebug.client_host = host.docker.internal" >> /usr/local/etc/php/conf.d/docker-php-ext-xdebug.ini

WORKDIR /var/www/

CMD ["apachectl", "-D", "FOREGROUND"]

EXPOSE 80 443

My docker/docker-compose.yml fragment

web-server:
    build: ./apache
    volumes:
      - ../src:/var/www
      - ./apache/apache-conf/:/etc/apache2/sites-enabled/
    ports:
      - "80:80"
      - "443:443"
    networks:
      - internal

My Apache config file at docker/apache/apache-conf/000-default.conf

<VirtualHost *:80>
        ServerName zms.test

        ServerAdmin webmaster@localhost
        DocumentRoot /var/www/public

        ErrorLog ${APACHE_LOG_DIR}/error.log
        CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>

Maybe it will be useful. My .htaccess file located in public directory of Laravel app near to index.php.

<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}]

    # Handle X-XSRF-Token Header
    RewriteCond %{HTTP:x-xsrf-token} .
    RewriteRule .* - [E=HTTP_X_XSRF_TOKEN:%{HTTP:X-XSRF-Token}]

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

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

I've tried to clear Laravel chache. But it seems Apache error, not Laravel...

Share Improve this question edited 16 hours ago halfer 20.4k19 gold badges109 silver badges202 bronze badges asked Apr 1 at 6:16 Kostya BronshteynKostya Bronshteyn 1216 bronze badges
Add a comment  | 

1 Answer 1

Reset to default 0

Trouble was in rewriting engine of Apache adding this to Dockerfile helped me!

RUN a2enmod rewrite

本文标签: phpApache in Docker container doesn39t see my routeStack Overflow