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 badges1 Answer
Reset to default 0Trouble was in rewriting engine of Apache adding this to Dockerfile helped me!
RUN a2enmod rewrite
本文标签: phpApache in Docker container doesn39t see my routeStack Overflow
版权声明:本文标题:php - Apache in Docker container doesn't see my route - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743905652a2559476.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论