commit 9bc2bd1d4485c1ef14f807ff6b2126def9b04325 parent 6725a60d0495d85de554407eb219e7a54e6c196b Author: RobinLinus <robinlinus@users.noreply.github.com> Date: Tue, 14 Jul 2020 22:12:10 +0200 Cleanup root folder Diffstat:
7 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/docker-compose.yml b/docker-compose.yml @@ -14,12 +14,12 @@ services: image: "nginx-with-openssl" volumes: - ./client:/usr/share/nginx/html - - ./nginx/default.conf:/etc/nginx/conf.d/default.conf - - ./certs:/etc/ssl/certs - - ./openssl:/mnt/openssl + - ./docker/nginx/default.conf:/etc/nginx/conf.d/default.conf + - ./docker/certs:/etc/ssl/certs + - ./docker/openssl:/mnt/openssl ports: - "8080:80" - "443:443" - env_file: fqdn.env + env_file: ./docker/fqdn.env entrypoint: /mnt/openssl/create.sh command: ["nginx", "-g", "daemon off;"] \ No newline at end of file diff --git a/fqdn.env b/docker/fqdn.env diff --git a/nginx-with-openssl.Dockerfile b/docker/nginx-with-openssl.Dockerfile diff --git a/nginx/default.conf b/docker/nginx/default.conf diff --git a/openssl/create.sh b/docker/openssl/create.sh diff --git a/openssl/snapdropCA.cnf b/docker/openssl/snapdropCA.cnf diff --git a/openssl/snapdropCert.cnf b/docker/openssl/snapdropCert.cnf