Skip to content

Commit 3b8d246

Browse files
authored
Fix typo (#4557)
"to be trust" should be "to trust" as a transitive verb.
1 parent b515f9c commit 3b8d246

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

locale/en/knowledge/HTTP/servers/how-to-create-a-HTTPS-server.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ layout: knowledge-post.hbs
99

1010
To create an HTTPS server, you need two things: an SSL certificate, and built-in `https` Node.js module.
1111

12-
We need to start out with a word about SSL certificates. Speaking generally, there are two kinds of certificates: those signed by a 'Certificate Authority', or CA, and 'self-signed certificates'. A Certificate Authority is a trusted source for an SSL certificate, and using a certificate from a CA allows your users to be trust the identity of your website. In most cases, you would want to use a CA-signed certificate in a production environment - for testing purposes, however, a self-signed certificate will do just fine.
12+
We need to start out with a word about SSL certificates. Speaking generally, there are two kinds of certificates: those signed by a 'Certificate Authority', or CA, and 'self-signed certificates'. A Certificate Authority is a trusted source for an SSL certificate, and using a certificate from a CA allows your users to trust the identity of your website. In most cases, you would want to use a CA-signed certificate in a production environment - for testing purposes, however, a self-signed certificate will do just fine.
1313

1414
To generate a self-signed certificate, run the following in your shell:
1515

0 commit comments

Comments
 (0)