https://github.com/markshust/docker-meteor-ssl
This is an nginx proxy that will serve as SSL termination for a meteor app.
https://github.com/markshust/docker-meteor-ssl
Last synced: 5 months ago
JSON representation
This is an nginx proxy that will serve as SSL termination for a meteor app.
- Host: GitHub
- URL: https://github.com/markshust/docker-meteor-ssl
- Owner: markshust
- Created: 2016-06-23T20:46:14.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2016-06-24T16:14:52.000Z (almost 10 years ago)
- Last Synced: 2025-05-17T08:48:11.717Z (about 1 year ago)
- Language: Nginx
- Homepage:
- Size: 4.88 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Nginx SSL Frontend for Meteor
This is an nginx proxy that will serve as SSL termination for a meteor app.
docker pull markoshust/meteor-ssl
## bundle.crt
This is a bundle containing all of your certificates including the provided CA certificates. To create this file you need to concatenate all certificates starting from your domain certificate to the top level CA certificates. Here's an example:
cat domain.com.crt COMODORSADomainValidationSecureServerCA.crt COMODORSAAddTrustCA.crt AddTrustExternalCARoot.crt > bundle.crt
## dhparams.pem
Generate your own dhparams.pem file, unique for your app:
openssl dhparam -out dhparams.pem 2048
## Usage
docker run -d -v /root/bundle.crt:/bundle.crt -v /root/private.key:/private.key -v /root/dhparams.pem:/dhparams.pem --link=myapp:meteor -p 80:80 -p 443:443 markoshust/meteor-ssl