Laravelアプリケーション用のDockerコンテナを起動しようとしています。
編集する
Dockerfile.nginx
FROM nginx:alpine
COPY ./nginx/my-site-config.conf /etc/nginx/conf.d/default.conf
nginx/my-site-config.conf
server {
listen 8027;
server_name localhost;
# handle .php
location ~ \.php$ {
# 404
try_files $fastcgi_script_name =404;
# default fastcgi_params
include fastcgi_params;
# fastcgi settings
fastcgi_pass php-fpm-container:9000;
fastcgi_index index.php;
fastcgi_buffers 8 16k;
fastcgi_buffer_size 32k;
# fastcgi params
fastcgi_param DOCUMENT_ROOT $realpath_root;
fastcgi_param SCRIPT_FILENAME $realpath_root$fastcgi_script_name;
fastcgi_param PHP_ADMIN_VALUE "open_basedir=$base/:/usr/lib/php/:/tmp/";
}
}
docker-compose.yml
#Nginx Service <-- doesn't work
# webserver:
# build:
# context: .
# dockerfile: Dockerfile.nginx
# container_name: webserver
# restart: unless-stopped
# tty: true
# ports:
# - "8027:80"
# - "443:443"
# networks:
# - app-network
# works
webserver:
image: nginx:alpine
container_name: webserver
restart: unless-stopped
tty: true
ports:
- "8027:80"
- "443:443"
networks:
- app-network
コメントアウトされたコードは開始されません: -
コメントされていないコードを使用してnginx:alpine
画像として提供 - サーバーホスティングnginxスプラッシュ画面。私の問題があるようですDockerfile.nginx
。
答え1
nginx:alpine
nginx設定の確認
docker run -it --rm nginx:alpine /bin/sh
/ # cd /etc/nginx
/etc/nginx # ls -l
total 44
drwxr-xr-x 2 root root 24 Dec 17 15:01 conf.d
-rw-r--r-- 1 root root 1077 Dec 15 14:55 fastcgi.conf
-rw-r--r-- 1 root root 1007 Dec 15 14:55 fastcgi_params
-rw-r--r-- 1 root root 2837 Dec 15 14:55 koi-utf
-rw-r--r-- 1 root root 2223 Dec 15 14:55 koi-win
-rw-r--r-- 1 root root 5231 Dec 15 14:55 mime.types
lrwxrwxrwx 1 root root 22 Dec 17 15:01 modules -> /usr/lib/nginx/modules
-rw-r--r-- 1 root root 646 Dec 15 14:55 nginx.conf
-rw-r--r-- 1 root root 636 Dec 15 14:55 scgi_params
-rw-r--r-- 1 root root 664 Dec 15 14:55 uwsgi_params
-rw-r--r-- 1 root root 3610 Dec 15 14:55 win-utf
これはデフォルトのnginx.confです。
/etc/nginx # cat nginx.conf
user nginx;
worker_processes auto;
error_log /var/log/nginx/error.log warn;
pid /var/run/nginx.pid;
events {
worker_connections 1024;
}
http {
include /etc/nginx/mime.types;
default_type application/octet-stream;
log_format main '$remote_addr - $remote_user [$time_local] "$request" '
'$status $body_bytes_sent "$http_referer" '
'"$http_user_agent" "$http_x_forwarded_for"';
access_log /var/log/nginx/access.log main;
sendfile on;
#tcp_nopush on;
keepalive_timeout 65;
#gzip on;
include /etc/nginx/conf.d/*.conf;
}
フォルダ内にはconf.d
デフォルトのサーバー構成があります
/etc/nginx # ls -l conf.d/
total 4
-rw-r--r-- 1 root root 1093 Dec 15 14:55 default.conf
非常に基本的なサーバー部分があります
/etc/nginx # grep -vE " *#|^ *$" conf.d/default.conf
server {
listen 80;
server_name localhost;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
}
ご覧のとおり、静的コンテンツのみがサーバーに設定されており、サポートされている*.php
php-fpmにリクエストを転送する部分はありません。
通常、このファイルを交換する必要があります(またはより多くの制御が必要な場合は完全に上書きする必要がありますnginx.conf
)。
少なくともPHP要求をバックエンドにリダイレクトするには、サーバー構成にセクションが必要です。
# handle .php
location ~ \.php$ {
# 404
try_files $fastcgi_script_name =404;
# default fastcgi_params
include fastcgi_params;
# fastcgi settings
fastcgi_pass php-fpm-container:9000; # <--- this is the PHP-FPM container
fastcgi_index index.php;
fastcgi_buffers 8 16k;
fastcgi_buffer_size 32k;
# fastcgi params
fastcgi_param DOCUMENT_ROOT $realpath_root;
fastcgi_param SCRIPT_FILENAME $realpath_root$fastcgi_script_name;
fastcgi_param PHP_ADMIN_VALUE "open_basedir=$base/:/usr/lib/php/:/tmp/";
}
このウェブサイトをご利用ください。DOのNGINX設定ツールアプリケーションの完全な構成のための良い開始点を作成するのに役立ち、その後nginx:apline
コンテナでそれを上書きすることができます。
nginxコンテナとphpコンテナの両方がPHPアプリケーションファイルにアクセスできる必要があります。
編集1
カスタムnginx画像
FROM nginx:alpine
# If you have a bundle of config created by DO config file,
# you can copy them all to overwrite all the settings.
# or use
# to overwrite a single file
# COPY my-site-config.conf /etc/nginx/conf.d/default.conf
nginxイメージのカスタムバージョンを使用するには、docker-composeを更新してください。
version: '3'
services:
#PHP Service
app:
build:
context: .
dockerfile: Dockerfile
image: digitalocean.com/php
container_name: app
restart: unless-stopped
tty: true
environment:
SERVICE_NAME: app
SERVICE_TAGS: dev
working_dir: /var/www
networks:
- app-network
#Nginx Service
webserver:
build:
context: .
dockerfile: Dockerfile.nginx
container_name: webserver
restart: unless-stopped
tty: true
ports:
- "8027:80"
- "443:443"
networks:
- app-network
編集2
Dockerの仕組みとマルチコンテナ環境での作業方法のいくつかの重要な部分が欠けているようです。まず、次の作業テンプレートから始めることをお勧めします。一つ(バインドマウントポイントが何を意味するのかを理解するには、すべてのページをお読みくださいapp
)webserver
可能なオプションも提供します。
version: '3'
services:
#PHP Service
app:
build:
context: .
dockerfile: Dockerfile
image: digitalocean.com/php
container_name: app
restart: unless-stopped
tty: true
environment:
SERVICE_NAME: app
SERVICE_TAGS: dev
working_dir: /var/www
volumes:
- ./:/var/www
- ./php/local.ini:/usr/local/etc/php/conf.d/local.ini
networks:
- app-network
#Nginx Service
webserver:
image: nginx:alpine
container_name: webserver
restart: unless-stopped
tty: true
ports:
- "80:80"
- "443:443"
volumes:
- ./:/var/www
- ./nginx/conf.d/:/etc/nginx/conf.d/
networks:
- app-network
#MySQL Service
db:
image: mysql:5.7.22
container_name: db
restart: unless-stopped
tty: true
ports:
- "3306:3306"
environment:
MYSQL_DATABASE: laravel
MYSQL_ROOT_PASSWORD: your_mysql_root_password
SERVICE_TAGS: dev
SERVICE_NAME: mysql
volumes:
- dbdata:/var/lib/mysql/
- ./mysql/my.cnf:/etc/mysql/my.cnf
networks:
- app-network
#Docker Networks
networks:
app-network:
driver: bridge
#Volumes
volumes:
dbdata:
driver: local