第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

使用 docker nginx 映像時(shí)我將 index.php 放在哪里

使用 docker nginx 映像時(shí)我將 index.php 放在哪里

PHP
達(dá)令說(shuō) 2023-07-15 15:34:30
我找不到放置文件 index.php 的位置,以便 ngnix 可以解釋我的文件。所有容器都在工作,當(dāng)我把localhost:8080nginx 工作時(shí)這是我的 docker-compose.ymlweb:  image: nginx  volumes:   - ./templates:/etc/nginx/templates  ports:   - "8080:8080"  environment:   - NGINX_HOST=foobar.com   - NGINX_PORT=8080php:       image: php:7.0-fpm       expose:           - 9000       volumes_from:           - app       links:           - elasticapp:       image: php:7.0-fpm       volumes:           - .:/srcelastic:       image: elasticsearch:2.3       volumes:         - ./elasticsearch/data:/usr/share/elasticsearch/data         - ./elasticsearch/logs:/usr/share/elasticsearch/logs       expose:         - "9200"       ports:         - "9200:9200"誰(shuí)能幫我嗎
查看完整描述

1 回答

?
搖曳的薔薇

TA貢獻(xiàn)1793條經(jīng)驗(yàn) 獲得超6個(gè)贊

您需要為 PHP 和 Nginx docker 鏡像安裝相同的卷。


version: '3'

services:

  nginx:

    image: nginx:alpine

    volumes:

      - ./app:/app

      - ./nginx-config/:/etc/nginx/conf.d/

    ports:

      - 80:80

    depends_on:

      - php

  php:

    image: php:7.3-fpm-alpine

    volumes:

     - ./app:/app


在上面的撰寫文件中,代碼放置app在主機(jī)的文件夾下。


樹(shù)


├── app

│   ├── helloworld.php

│   └── index.php

├── docker-compose.yml

└── nginx-config

    └── default.conf

您的 Nginx 配置應(yīng)該使用 docker 服務(wù)網(wǎng)絡(luò)來(lái)連接 php-fpm 容器。


server {

    index index.php index.html;

    server_name php-docker.local;

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

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

    root /app/;


    location ~ \.php$ {

        try_files $uri =404;

        fastcgi_split_path_info ^(.+\.php)(/.+)$;

        fastcgi_pass php:9000;

        fastcgi_index index.php;

        include fastcgi_params;

        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;

        fastcgi_param PATH_INFO $fastcgi_path_info;

    }

}

或者你可以嘗試 Github 上的工作示例。


git clone https://github.com/Adiii717/dockerize-nginx-php.git

cd dockerize-nginx-php;

docker-compose up

現(xiàn)在打開(kāi)瀏覽器


http://localhost/helloworld.php


查看完整回答
反對(duì) 回復(fù) 2023-07-15
  • 1 回答
  • 0 關(guān)注
  • 163 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)