File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 15
15
category = "host state" ;
16
16
package = pkgs . mkcert ;
17
17
command = ''
18
- echo "$(tput bold)Installing the ${ name } 's dev CA into local trust stores via mkcert command ...$(tput sgr0)"
18
+ echo "$(tput bold)Installing ${ name } 's dev CA into local trust stores via mkcert command ...$(tput sgr0)"
19
19
export CAROOT=${ dev-ca-path }
20
20
${ pkgs . mkcert } /bin/mkcert -install
21
21
'' ;
26
26
category = "host state" ;
27
27
package = pkgs . mkcert ;
28
28
command = ''
29
- echo "$(tput bold)Purging the ${ name } 's dev CA from local trust stores via mkcert command ...$(tput sgr0)"
29
+ echo "$(tput bold)Purging ${ name } 's dev CA from local trust stores via mkcert command ...$(tput sgr0)"
30
30
export CAROOT=${ dev-ca-path }
31
31
${ pkgs . mkcert } /bin/mkcert -uninstall
32
32
'' ;
72
72
73
73
Use cases:
74
74
- Ship static dev certificates under version control and make them trusted
75
- on user machines: add the rootCA under version control alongside the
76
- your dev certificates.
75
+ on user machines: add the rootCA under version control alongside your
76
+ dev certificates.
77
77
- Provide users with easy and reliable CA bootstrapping through the mkcert
78
78
command: exempt this path from version control via .gitignore and have
79
79
users easily and reliably bootstrap a dev CA infrastructure on first use.
You can’t perform that action at this time.
0 commit comments