PeakGaodocker部署nginx问题,nginx.conf引用conf.d的default.conf文件没有生效 中发帖

请教下docker部署nginx问题,我在nginx.conf中引用了conf.d的default.conf文件但是没有生效 
nginx.conf
user nginx;
worker_processes auto;

error_log /var/log/nginx/error.log;
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] "$reque...