Created
September 23, 2018 09:24
-
-
Save goyalmohit/987c72db78e893c145d395086f43b5f2 to your computer and use it in GitHub Desktop.
Docker Compose sample for mapping krestel with SSL Certificate
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
... | |
ports: | |
- 5000:80 | |
- 5001:443 | |
environment: | |
ASPNETCORE_URLS: "https://+;http://+" | |
ASPNETCORE_Kestrel__Certificates__Default__Password: "YourSecurePassword" | |
ASPNETCORE_Kestrel__Certificates__Default__Path: "my_web_domain.pfx" | |
... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment