带有PHP Nginx的Docker无法加载图像或js-找不到404

时间:2019-07-02 00:49:50

标签: php docker nginx

我正在Windows 10专业版本地计算机中部署2个docker容器(nginx和php fpm)。

我可以正确执行php脚本。

例如:http://localhost:8888/phpinfo.php->正确返回。

但是除了php脚本(例如图片,js或css)之外,找不到我。

例如:http://localhost:8888/image.jpg->找不到

这里可能出了什么问题?

这是我的docker撰写文件:

version: '3.7'
services:
  # The Web Server
  web:
    container_name: emm_web
    build:
      context: ./
      dockerfile: web.dockerfile
    volumes:
      - ../log/:/var/log
    ports:
      - 8888:80

  # The PHP Application
  app:
    container_name: emm_app
    build:
      context: ./
      dockerfile: app.dockerfile
    volumes:
      - ../www/:/var/www
    depends_on:
      - web
    environment:
      - "DB_PORT=3306"
      - "DB_HOST=database"

这是我的Nginx vhost.conf:

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

    error_log  /var/log/nginx/error.log;
    access_log /var/log/nginx/access.log;

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

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

谢谢:)

1 个答案:

答案 0 :(得分:0)

您需要共享Nginx容器的文件。试试这个:

# The Web Server
web:
  container_name: emm_web
  build:
    context: ./
    dockerfile: web.dockerfile
  volumes:
    - ../log/:/var/log
    # !! nginx need this volume !!
    - ../www/:/var/www:ro
  ports:
    - 8888:80

该只读卷将使容器中的文件可用。