├── .gitignore ├── README.md ├── docker-compose.yml ├── samples ├── api │ ├── Dockerfile │ ├── app.js │ └── package.json └── website │ ├── Dockerfile │ ├── index.html │ └── index.js └── volumes ├── config └── sample-website │ └── config.js ├── nginx-sample-website └── conf.d │ └── sample-website.conf └── proxy └── templates └── nginx.tmpl /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | certs/ 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilyes/docker-nginx-letsencrypt-sample/HEAD/README.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilyes/docker-nginx-letsencrypt-sample/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /samples/api/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilyes/docker-nginx-letsencrypt-sample/HEAD/samples/api/Dockerfile -------------------------------------------------------------------------------- /samples/api/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilyes/docker-nginx-letsencrypt-sample/HEAD/samples/api/app.js -------------------------------------------------------------------------------- /samples/api/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilyes/docker-nginx-letsencrypt-sample/HEAD/samples/api/package.json -------------------------------------------------------------------------------- /samples/website/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilyes/docker-nginx-letsencrypt-sample/HEAD/samples/website/Dockerfile -------------------------------------------------------------------------------- /samples/website/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilyes/docker-nginx-letsencrypt-sample/HEAD/samples/website/index.html -------------------------------------------------------------------------------- /samples/website/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilyes/docker-nginx-letsencrypt-sample/HEAD/samples/website/index.js -------------------------------------------------------------------------------- /volumes/config/sample-website/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilyes/docker-nginx-letsencrypt-sample/HEAD/volumes/config/sample-website/config.js -------------------------------------------------------------------------------- /volumes/nginx-sample-website/conf.d/sample-website.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilyes/docker-nginx-letsencrypt-sample/HEAD/volumes/nginx-sample-website/conf.d/sample-website.conf -------------------------------------------------------------------------------- /volumes/proxy/templates/nginx.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilyes/docker-nginx-letsencrypt-sample/HEAD/volumes/proxy/templates/nginx.tmpl --------------------------------------------------------------------------------