Docker:Apache2 容器无法与 php7.1 容器通信
Docker: Apache2 container can not talk to php7.1 container
我在两个不同的容器中安装了 Apache2 和 PHP-FPM 运行ning。两个容器 运行 好,但我无法处理 php 文件。当我导航到 php 文件时,浏览器响应 'File not found.' 查看 apache 错误日志,我得到:
[Fri Feb 01 09:50:54.894531 2019] [proxy_fcgi:error] [pid 8:tid 140041300997888] [client 44.82.126.19:65344] AH01071: Got error 'Primary script unknown\n'
原则上,我一直在遵循设置说明 here。搜索其他网站显示类似的设置。
我注意到说明不包括 apache2 PHP 模块,但似乎 fcgi 会处理这个...?
部分调试结果:
- 我可以访问主机 IP 并呈现一个 HTML 网页。
- 在 Apache2 容器内,我可以成功 ping PHP容器。所以内部网络正常。
- 在 PHP 容器中,我可以 运行 CLI PHP 命令成功。
- 我已经检查了PHP-FPM配置文件和"Docker inspect"端口9000的暴露。一切正常。
docker-compose.yml:
version: '3.2'
volumes:
apache2Config:
external: true
webContent:
external: true
databases:
external: true
networks:
frontend:
backend:
services:
php:
build:
context: './php7.1/'
args:
PHP_VERSION: ${PHP_VERSION}
image: php7.1.26-fpm:1.0
restart: always
container_name: php
networks:
- backend
web:
build: ./apache2/
image: apache2:1.0
restart: always
container_name: AOW_apache2Server
depends_on:
- php
- mariadb
networks:
- frontend
- backend
expose:
- "80"
- "81"
- "443"
- "8083"
ports:
- "80:80/tcp"
- "81:81"
- "443:443"
- "8083:8083"
volumes:
- apache2Config:/mnt/apache2Conf
- webContent:/var/www
mariadb:
build: ./mariaDB/
image: mariadb_10.4.0
container_name: mariaDB_10.4.0
networks:
- backend
ports:
- "3306:3306"
environment:
- MYSQL_ROOT_PASSWORD=*****
volumes:
- databases:/var/lib/mysql
Apach2 配置:
#ServerRoot "/etc/apache2"
ServerName aow
Mutex file:${APACHE_LOCK_DIR} default
PidFile ${APACHE_PID_FILE}
Timeout 300
KeepAlive On
MaxKeepAliveRequests 100
KeepAliveTimeout 5
# These need to be set in /etc/apache2/envvars
User ${APACHE_RUN_USER}
Group ${APACHE_RUN_GROUP}
HostnameLookups Off
ErrorLog ${APACHE_LOG_DIR}/error.log
LogLevel warn mod_rewrite.c:trace2
# Include module configuration:
IncludeOptional mods-enabled/*.load
IncludeOptional mods-enabled/*.conf
# Include list of ports to listen on
Include ports.conf
<Directory />
Options FollowSymLinks
AllowOverride None
Require all denied
</Directory>
#Allow access to the /usr/share directory. phpmyadmin is located in here.
<Directory /usr/share/phpmyadmin/>
Order allow,deny
Allow from all
Require all granted
</Directory>
#Allow access to the www directory. Mediawiki source files are in here.
#Directory listing is disabled, but following symLinks is allowed.
<Directory /var/www/>
Options -Indexes +FollowSymLinks
AllowOverride None
Require all granted
</Directory>
AccessFileName .htaccess
<FilesMatch "^\.ht">
Require all denied
</FilesMatch>
LogFormat "%v:%p %h %l %u %t \"%r\" %>s %O \"%{Referer}i\" \"%{User-Agent}i\"" vhost_combined
LogFormat "%h %l %u %t \"%r\" %>s %O \"%{Referer}i\" \"%{User-Agent}i\"" combined
LogFormat "%h %l %u %t \"%r\" %>s %O" common
LogFormat "%{Referer}i -> %U" referer
LogFormat "%{User-agent}i" agent
# Include generic snippets of statements
IncludeOptional conf-enabled/*.conf
# Include the virtual host configurations:
IncludeOptional sites-enabled/*.conf
Apache2 启用模组:
Loaded Modules:
core_module (static)
so_module (static)
watchdog_module (static)
http_module (static)
log_config_module (static)
logio_module (static)
version_module (static)
unixd_module (static)
access_compat_module (shared)
alias_module (shared)
auth_basic_module (shared)
authn_core_module (shared)
authn_file_module (shared)
authz_core_module (shared)
authz_host_module (shared)
authz_user_module (shared)
autoindex_module (shared)
cache_module (shared)
cache_disk_module (shared)
deflate_module (shared)
dir_module (shared)
env_module (shared)
expires_module (shared)
file_cache_module (shared)
filter_module (shared)
headers_module (shared)
macro_module (shared)
mime_module (shared)
mpm_event_module (shared)
negotiation_module (shared)
proxy_module (shared)
proxy_fcgi_module (shared)
reqtimeout_module (shared)
rewrite_module (shared)
setenvif_module (shared)
socache_shmcb_module (shared)
ssl_module (shared)
status_module (shared)
000-default.conf内容:
<VirtualHost *:80>
# Proxy .php requests to port 9000 of the php-fpm container
ProxyPassMatch ^/(.*\.php(/.*)?)$ fcgi://php:9000/var/www/
ServerAdmin <<REMOVED>>
DocumentRoot /var/www
LogLevel info ssl:warn
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>
这看起来像是访问问题。您确定 PHP/FPM 容器可以访问 Apache 指向的目录吗?
我在两个不同的容器中安装了 Apache2 和 PHP-FPM 运行ning。两个容器 运行 好,但我无法处理 php 文件。当我导航到 php 文件时,浏览器响应 'File not found.' 查看 apache 错误日志,我得到:
[Fri Feb 01 09:50:54.894531 2019] [proxy_fcgi:error] [pid 8:tid 140041300997888] [client 44.82.126.19:65344] AH01071: Got error 'Primary script unknown\n'
原则上,我一直在遵循设置说明 here。搜索其他网站显示类似的设置。
我注意到说明不包括 apache2 PHP 模块,但似乎 fcgi 会处理这个...?
部分调试结果:
- 我可以访问主机 IP 并呈现一个 HTML 网页。
- 在 Apache2 容器内,我可以成功 ping PHP容器。所以内部网络正常。
- 在 PHP 容器中,我可以 运行 CLI PHP 命令成功。
- 我已经检查了PHP-FPM配置文件和"Docker inspect"端口9000的暴露。一切正常。
docker-compose.yml:
version: '3.2'
volumes:
apache2Config:
external: true
webContent:
external: true
databases:
external: true
networks:
frontend:
backend:
services:
php:
build:
context: './php7.1/'
args:
PHP_VERSION: ${PHP_VERSION}
image: php7.1.26-fpm:1.0
restart: always
container_name: php
networks:
- backend
web:
build: ./apache2/
image: apache2:1.0
restart: always
container_name: AOW_apache2Server
depends_on:
- php
- mariadb
networks:
- frontend
- backend
expose:
- "80"
- "81"
- "443"
- "8083"
ports:
- "80:80/tcp"
- "81:81"
- "443:443"
- "8083:8083"
volumes:
- apache2Config:/mnt/apache2Conf
- webContent:/var/www
mariadb:
build: ./mariaDB/
image: mariadb_10.4.0
container_name: mariaDB_10.4.0
networks:
- backend
ports:
- "3306:3306"
environment:
- MYSQL_ROOT_PASSWORD=*****
volumes:
- databases:/var/lib/mysql
Apach2 配置:
#ServerRoot "/etc/apache2"
ServerName aow
Mutex file:${APACHE_LOCK_DIR} default
PidFile ${APACHE_PID_FILE}
Timeout 300
KeepAlive On
MaxKeepAliveRequests 100
KeepAliveTimeout 5
# These need to be set in /etc/apache2/envvars
User ${APACHE_RUN_USER}
Group ${APACHE_RUN_GROUP}
HostnameLookups Off
ErrorLog ${APACHE_LOG_DIR}/error.log
LogLevel warn mod_rewrite.c:trace2
# Include module configuration:
IncludeOptional mods-enabled/*.load
IncludeOptional mods-enabled/*.conf
# Include list of ports to listen on
Include ports.conf
<Directory />
Options FollowSymLinks
AllowOverride None
Require all denied
</Directory>
#Allow access to the /usr/share directory. phpmyadmin is located in here.
<Directory /usr/share/phpmyadmin/>
Order allow,deny
Allow from all
Require all granted
</Directory>
#Allow access to the www directory. Mediawiki source files are in here.
#Directory listing is disabled, but following symLinks is allowed.
<Directory /var/www/>
Options -Indexes +FollowSymLinks
AllowOverride None
Require all granted
</Directory>
AccessFileName .htaccess
<FilesMatch "^\.ht">
Require all denied
</FilesMatch>
LogFormat "%v:%p %h %l %u %t \"%r\" %>s %O \"%{Referer}i\" \"%{User-Agent}i\"" vhost_combined
LogFormat "%h %l %u %t \"%r\" %>s %O \"%{Referer}i\" \"%{User-Agent}i\"" combined
LogFormat "%h %l %u %t \"%r\" %>s %O" common
LogFormat "%{Referer}i -> %U" referer
LogFormat "%{User-agent}i" agent
# Include generic snippets of statements
IncludeOptional conf-enabled/*.conf
# Include the virtual host configurations:
IncludeOptional sites-enabled/*.conf
Apache2 启用模组:
Loaded Modules:
core_module (static)
so_module (static)
watchdog_module (static)
http_module (static)
log_config_module (static)
logio_module (static)
version_module (static)
unixd_module (static)
access_compat_module (shared)
alias_module (shared)
auth_basic_module (shared)
authn_core_module (shared)
authn_file_module (shared)
authz_core_module (shared)
authz_host_module (shared)
authz_user_module (shared)
autoindex_module (shared)
cache_module (shared)
cache_disk_module (shared)
deflate_module (shared)
dir_module (shared)
env_module (shared)
expires_module (shared)
file_cache_module (shared)
filter_module (shared)
headers_module (shared)
macro_module (shared)
mime_module (shared)
mpm_event_module (shared)
negotiation_module (shared)
proxy_module (shared)
proxy_fcgi_module (shared)
reqtimeout_module (shared)
rewrite_module (shared)
setenvif_module (shared)
socache_shmcb_module (shared)
ssl_module (shared)
status_module (shared)
000-default.conf内容:
<VirtualHost *:80>
# Proxy .php requests to port 9000 of the php-fpm container
ProxyPassMatch ^/(.*\.php(/.*)?)$ fcgi://php:9000/var/www/
ServerAdmin <<REMOVED>>
DocumentRoot /var/www
LogLevel info ssl:warn
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>
这看起来像是访问问题。您确定 PHP/FPM 容器可以访问 Apache 指向的目录吗?