snapdrop

A Progressive Web App for local file sharing
git clone http://git.hanabi.in/repos/snapdrop.git
Log | Files | Refs | README | LICENSE

commit 9bc2bd1d4485c1ef14f807ff6b2126def9b04325
parent 6725a60d0495d85de554407eb219e7a54e6c196b
Author: RobinLinus <robinlinus@users.noreply.github.com>
Date:   Tue, 14 Jul 2020 22:12:10 +0200

Cleanup root folder

Diffstat:
Mdocker-compose.yml | 8++++----
Rfqdn.env -> docker/fqdn.env | 0
Rnginx-with-openssl.Dockerfile -> docker/nginx-with-openssl.Dockerfile | 0
Rnginx/default.conf -> docker/nginx/default.conf | 0
Ropenssl/create.sh -> docker/openssl/create.sh | 0
Ropenssl/snapdropCA.cnf -> docker/openssl/snapdropCA.cnf | 0
Ropenssl/snapdropCert.cnf -> docker/openssl/snapdropCert.cnf | 0
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