Warning: file_get_contents(/data/phpspider/zhask/data//catemap/4/powerbi/2.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
docker中codeigniter的Nginx服务器配置,多个应用程序_Docker_Codeigniter_Nginx - Fatal编程技术网

docker中codeigniter的Nginx服务器配置,多个应用程序

docker中codeigniter的Nginx服务器配置,多个应用程序,docker,codeigniter,nginx,Docker,Codeigniter,Nginx,我在root中为这两个应用程序提供了index.php和manager.php,通过docker和nginx、phpfpm以及其他一些依赖项进行设置 这是我的docker撰写文件,我只放了重要的部分 services: web: container_name: web build: context: ./ dockerfile: docker/nginx/Dockerfile volumes: - ./:/var/www p

我在root中为这两个应用程序提供了index.php和manager.php,通过docker和nginx、phpfpm以及其他一些依赖项进行设置

这是我的docker撰写文件,我只放了重要的部分

services:
  web:
    container_name: web
    build:
      context: ./
      dockerfile: docker/nginx/Dockerfile
    volumes:
      - ./:/var/www
    ports:
      - 80
    depends_on:
      - app
    environment:
      VIRTUAL_HOST: ${VIRTUAL_HOSTS}
      VIRTUAL_PORT: 80
    networks:
      - nginx-proxy
      - my-app

  app:
    container_name: app
    build:
      context: ./
      dockerfile: docker/php/Dockerfile
    volumes:
      - ./:/var/www
    depends_on:
      - mysql
    ports:
      - 9000
    networks:
      - my-app
...
这是我的vhost文件,我尝试了我在互联网上知道或找到的所有东西,使它工作,但没有成功,这是最终形式,当然仍然不工作

server {
    listen 80;
    server_name myapplication.local;

    index index.php index.html;

    root /var/www;

    location / {
        try_files $uri $uri/ =404;
    }

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

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

    try_files $uri $uri/ /index.php;

    if (!-e $request_filename){
        rewrite ^/(.*)$ /index.php?/$1? last;
    }

    location ~ /\.ht {
        deny all;
    }

    location = /favicon.ico {
        log_not_found off; access_log off;
    }
    location = /robots.txt {
        log_not_found off; access_log off; allow all;
    }
    location ~* \.(css|gif|ico|jpeg|jpg|js|png)$ {
        expires max;
        log_not_found off;
    }

    sendfile off;
}
如果我访问应用程序正常工作,如果我去
/manager.php
/manager.php/*
我得到404,有人知道如何配置nginx来处理这种情况吗,谢谢

我找到了解决方案:

server {
    listen 80;
    server_name myapplication.local;

    index index.php index.html manager.php;

    root /var/www;

    location / {
        try_files $uri $uri/ =404;
    }

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

    try_files $uri $uri/ /index.php /manager.php;

    if (!-e $request_filename){
        rewrite ^/manager.php/(.*)$ /manager.php?/$1? last;
        rewrite ^/(.*)$ /index.php?/$1? last;
    }

    location ~ /\.ht {
        deny all;
    }

    location = /favicon.ico {
        log_not_found off; access_log off;
    }
    location = /robots.txt {
        log_not_found off; access_log off; allow all;
    }
    location ~* \.(css|gif|ico|jpeg|jpg|js|png)$ {
        expires max;
        log_not_found off;
    }

    sendfile off;
}