We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bca73bb commit 989963bCopy full SHA for 989963b
nginx/Dockerfile
@@ -1,5 +1,6 @@
1
FROM maxexcloo/nginx:latest
2
MAINTAINER Qi Zhang <todayhill@gmail.com>
3
ADD nginx.conf /etc/nginx/
4
+ADD default.conf /etc/nginx/host.d/
5
ADD supervisord.conf /etc/supervisor/conf.d/nginx.conf
6
EXPOSE 80
nginx/default.conf
@@ -0,0 +1,8 @@
+server {
+ listen 80;
+ listen [::]:80 default_server ipv6only=on;
+ root /data/http;
+ include /etc/nginx/addon.d/default-*.conf;
+ include /etc/nginx/conf.d/*.conf;
7
+ include /data/config/nginx-*.conf;
8
+}
0 commit comments