File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
packages/@ionic/cli/src/commands/ssl Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -53,6 +53,8 @@ Uses OpenSSL to create a self-signed certificate for ${strong('localhost')} (by
53
53
After the certificate is generated, you will still need to add it to your system or browser as a trusted certificate.
54
54
55
55
The default directory for ${ input ( '--key-path' ) } and ${ input ( '--cert-path' ) } is ${ input ( '.ionic/ssl/' ) } .
56
+
57
+ Deprecated. Developers should generate an SSL certificate locally and then configure it using their project tooling such as Vite or Angular CLI.
56
58
` ,
57
59
options : [
58
60
{
@@ -110,7 +112,7 @@ The default directory for ${input('--key-path')} and ${input('--cert-path')} is
110
112
groups : [ MetadataGroup . ADVANCED ] ,
111
113
} ,
112
114
] ,
113
- groups : [ MetadataGroup . EXPERIMENTAL ] ,
115
+ groups : [ MetadataGroup . DEPRECATED ] ,
114
116
} ;
115
117
}
116
118
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ export class SSLNamespace extends Namespace {
8
8
return {
9
9
name : 'ssl' ,
10
10
summary : 'Commands for managing SSL keys & certificates' ,
11
- groups : [ MetadataGroup . EXPERIMENTAL ] ,
11
+ groups : [ MetadataGroup . DEPRECATED ] ,
12
12
description : `
13
13
These commands make it easy to manage SSL certificates for using HTTPS with ${ input ( 'ionic serve' ) } .
14
14
` ,
You can’t perform that action at this time.
0 commit comments