Laravel/Docker/Apache/PHP 服务器显示在本地主机上找不到文件:8888

时间:2021-01-26 19:45:18

标签: php laravel mongodb docker apache

所以我这可能是我第 5 次在新计算机上安装 Laravel 应用程序。我工作的公司使用 Laravel 和 MongoDB,Apache 由本地主机上的 docker 桌面提供支持,生产环境中使用 heroku。所以我们有一个写得很好的指南,用于在 Windows + MacOS 上设置这个编码环境。

我的安装似乎成功了,直到我导航到 http://localhost:8888,它的左上角有文本“找不到文件”。如果我导航到 localhost:9999,我会收到 MongoDB 消息,“看起来您正在尝试通过本地驱动程序端口上的 HTTP 访问 MongoDB。”这是正常现象,很高兴看到它起作用了。

当我用谷歌浏览器检查页面时,控制台显示,“GET http://localhost:8888/ 404 (NOT FOUND) localhost/:1

我将提供下面的 apache.conf.htaccess 文件以及 index.php

apache.conf

ServerName localhost

LoadModule deflate_module /usr/local/apache2/modules/mod_deflate.so
LoadModule proxy_module /usr/local/apache2/modules/mod_proxy.so
LoadModule proxy_fcgi_module /usr/local/apache2/modules/mod_proxy_fcgi.so

<VirtualHost *:80>
    #Proxy .php requests to port 9000 of the php-fpm container
    ProxyPassMatch ^/(.*\.php(/.*)?)$ fcgi://php:9000/var/www/html/public/$1
    DocumentRoot /var/www/html/public/
    <Directory /var/www/html/public/>
            DirectoryIndex index.php
            Options Indexes FollowSymLinks
            AllowOverride All
            Require all granted
    </Directory>

    #send apache logs to stdout and stderr
    CustomLog /proc/self/fd/1 common
    ErrorLog /proc/self/fd/2
<VirtualHost *:80>
    DocumentRoot /var/www/html/public/
<Directory /var/www/html/public/>
    DirectoryIndex index.php
    Options Indexes FollowSymLinks
    AllowOverride All
    Require all granted
</Directory>
</VirtualHost> 

.htaccess 文件

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

RewriteEngine On

RewriteCond %{HTTP:X-Forwarded-Proto} =http
RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]

# 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>

index.php

<?php

/**
 * Laravel - A PHP Framework For Web Artisans
 *
 * @package  Laravel
 * @author   Taylor Otwell <taylor@laravel.com>
 */

define('LARAVEL_START', microtime(true));

/*
|--------------------------------------------------------------------------
| Register The Auto Loader
|--------------------------------------------------------------------------
|
| Composer provides a convenient, automatically generated class loader for
| our application. We just need to utilize it! We'll simply require it
| into the script here so that we don't have to worry about manual
| loading any of our classes later on. It feels great to relax.
|
*/

require __DIR__.'/../vendor/autoload.php';

/*
|--------------------------------------------------------------------------
| Turn On The Lights
|--------------------------------------------------------------------------
|
| We need to illuminate PHP development, so let us turn on the lights.
| This bootstraps the framework and gets it ready for use, then it
| will load up this application so that we can run it and send
| the responses back to the browser and delight our users.
|
*/

$app = require_once __DIR__.'/../bootstrap/app.php';

/*
|--------------------------------------------------------------------------
 | Run The Application
|--------------------------------------------------------------------------
|
| Once we have the application, we can handle the incoming request
| through the kernel, and send the associated response back to
| the client's browser allowing them to enjoy the creative
| and wonderful application we have prepared for them.
|
*/

$kernel = $app->make(Illuminate\Contracts\Http\Kernel::class);

$response = $kernel->handle(
    $request = Illuminate\Http\Request::capture()
);

$response->send();

$kernel->terminate($request, $response);

我从大家一直在使用的 github 存储库中提取了 src 文件夹中的所有文件。这台新笔记本电脑是否有可能阻止访问 apache/docker 服务?

任何输入都有帮助。如果需要更多文件结构,请告诉我,如有必要,我会添加更多代码。请注意,一位同事最近在他的机器上执行了我的确切步骤并且他的工作正常,但我的未找到文件。

0 个答案:

没有答案