NGINX 服务器说未找到文件

NGINX 服务器说未找到文件

我正在尝试通过使用 lumen 和 docker 构建服务来学习微服务架构。我的文件夹结构如下

./
./base_service
./base_service/base.docker
./user_service
./user_service/user.docker
./auth_service
./auth_service/auth.docker
./gateway.docker
./vhost.conf
./docker-compose.yml

每个服务目录都是一个流明应用程序 这是我的docker-compose.yml文件的样子

version: '2'
services:
    gateway:
      build:
        context: ./
        dockerfile: web.docker
      volumes:
        - ./:/var/www
      ports:
        - "8080:80"
      links:
        - base_service
        - auth_service
        - user_service
    base_service:
      build:
        context: ./base_service
        dockerfile: base.docker
      volumes:
          - ./:/var/www
      links:
          - broker
    auth_service:
      build:
        context: ./auth_service
        dockerfile: auth.docker
      volumes:
          - ./:/var/www
      links:
          - broker
    user_service:
      build:
        context: ./user_service
        dockerfile: user.docker
      volumes:
          - ./:/var/www
      links:
          - broker
    broker:
        image: redis:3.0
        ports:
            - "63791:6379"

gateway.docker

FROM nginx

ADD ./vhost.conf /etc/nginx/conf.d/default.conf

WORKDIR /var/www

我的 nginx vhost.conf

server {
    listen 80;
    index index.php index.html;
    root /var/www/base_service/public;

    location / {
        try_files $uri /index.php?$args;
    }

    location ~ \.php$ {
        fastcgi_split_path_info ^(.+\.php)(/.+)$;
        fastcgi_pass base_service:9000;
        fastcgi_index index.php;
        include fastcgi_params;
        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
        fastcgi_param PATH_INFO $fastcgi_path_info;
    }
}

服务的 docker 文件只需获取 PHP7-fpm 镜像

FROM php:7-fpm

RUN apt-get update && apt-get install -y libmcrypt-dev mysql-client \
  && docker-php-ext-install mcrypt pdo_mysql

WORKDIR /var/www

运行docker-compose up -d命令并导航到http://localhost:8080,我得到一个页面,提示“文件未找到”。这是我第一次尝试微服务架构,因此对整个设置的配置有些不甚了解,任何帮助或指导都将不胜感激。

答案1

当我尝试模仿所述内容时,我遇到了类似的问题:这里。最后,我发现问题在于我必须将所有这些文件放在 PROJECT ROOT 中(而不是在其中创建项目!)。进行这些更改后,我能够完美地处理我的项目。希望这对您也有帮助。

相关内容