create-dotnet-devcert
create-dotnet-devcert copied to clipboard
A simple script that creates and trusts a self-signed development certificate for dotnet on Linux distributions.
In this project they use tye. I have been using it for development. But it can also be used to deploy kubernetes clusters
Hi, I think this just needs to be added to the prerequisites. Version 3.1 of dotnet dev-certs https doesn't support the --import option as best I can tell.
This is not an issue, just to says thanks for sharing this. I'm a long term Windows developer and have decided to give Linux a go with .NET 5. As...
PFX file is needed in dotnet Kestrel. It can be given through an environment variable that tells Kestrel the path to the PFX file. `ASPNETCORE_Kestrel__Certificates__Default__Path` is the variable name. That...
Hello I'm not sure if some instructions are missing in the README, but when I run the script, I get: ``` ~/code/create-dotnet-devcert/scripts main ❯ ./arch-create-dotnet-devcert.sh ....+...+...+....+......+........+.........+...+....+++++++++++++++++++++++++++++++++++++++*.+..............+.+..+....+......+..+......+.........+......+.......+...+.....+....+........+...............+...+..........+..+.........+....+......+...+++++++++++++++++++++++++++++++++++++++*..+.....+......+...+......+....+..+......+...+......+....+.........+..+......+....+.....+...+...+...+.......+..+......+.+.....+..................+......+.........+...+.......+......+.....+.........+................+.........+...+..+.......+.....+...+............+..........+...............+......+.....+...+......+...+...+.......+...........+.........+.+.....+.+...+...........+.......+.....+.......+............+..............+......+.+..+.+..+.........+...+.......+...............+...+..+.+........+............+...+.+........+..........+..+......+...+....+..+.+.....+............+.+.........+...+..+......+....+...+...............+.....+....+.....+.+..+......+.+.........+...........+.+..+.+.........+.....+...+....+......+...+......+...+..+...+.+....................+......+.+.....+...+.......+........+....+............+.....+......+..........+...+..+...+.+........+.+.....+......+....+.....+.+...+.....+...+....+..............................+...+................................+.+..+.+...............+..+...+............+.......+..+.........+....+........+.......+..+....+.........+..................+..+.+.....+.......+..+.++++++ .......+..+.+.....+.........+...+.........+.+........+++++++++++++++++++++++++++++++++++++++*.....+++++++++++++++++++++++++++++++++++++++*.......+....+....................+.......+...............+......+...+...........+.........+.......+...+.....+.+......+..............+.........+....+......+..+......................+...+...+...........+...+......+.........+.+..+....+......+.....+....+.........+..+.........+....+.........+........+...+...............+....+...+..+............+.+........+.+......+..+...+....+......+..............+...+...+.......+.......................+.......+.....+.+.................+....+...+..+.............+..................+...+..............+...+...+.......+..+.+...........+...+...............+.+..+....+...........+.........+.+.....+..........+..++++++ ----- Configuring nssdb...
Thank you for providing a solution to this very annoying problem of setting up local dev certs - Microsoft has really dropped the ball by not considering linux in their...
It work very well before but now after upgrading to 22.04 I got issue like below when running app However, the chrome still detect https OK for the service. Just...
I:m using arch linux script to create certificates. While it does work, when I connect to my server using ipv4, when I try to connect using ipv6 dotnet fails to...
This is not an issue. I tried to figure out a way to message you directly within github... couldn't find that way. thank you very much for creating this script!
For OpenSuse Tumbleweed: - run `sudo zypper in mozilla-nss-tools` - create a new script, e.g. opensuse.sh: ``` #!/bin/sh . "$(dirname "$0")/common.sh" $SUDO cp $CRTFILE "/etc/pki/trust/anchors/" $SUDO update-ca-certificates cleanup ``` -...