Skip to content

Commit f99ed9b

Browse files
authored
Update TLS example in other languages (#1033)
Added TLS example in other languages, following #1013
1 parent b974f36 commit f99ed9b

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

docs/advanced/server.de.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ Der Parameter _tlsConfiguration_ legt fest, ob TLS (SSL) verwendet werden soll.
132132
// Enable TLS.
133133
app.http.server.configuration.tlsConfiguration = .makeServerConfiguration(
134134
certificateChain: try NIOSSLCertificate.fromPEMFile("/path/to/cert.pem").map { .certificate($0) },
135-
privateKey: .file("/path/to/key.pem")
135+
privateKey: try NIOSSLPrivateKey(file: "/path/to/key.pem", format: .pem))
136136
)
137137
```
138138

docs/advanced/server.es.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ El parámetro `tlsConfiguration` controla si TLS (SSL) está habilitado en el se
140140
// Habilitar TLS.
141141
app.http.server.configuration.tlsConfiguration = .makeServerConfiguration(
142142
certificateChain: try NIOSSLCertificate.fromPEMFile("/path/to/cert.pem").map { .certificate($0) },
143-
privateKey: .file("/path/to/key.pem")
143+
privateKey: try NIOSSLPrivateKey(file: "/path/to/key.pem", format: .pem))
144144
)
145145
```
146146

docs/advanced/server.nl.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ De `tlsConfiguration` parameter regelt of TLS (SSL) is ingeschakeld op de server
141141
// Schakel TLS in.
142142
app.http.server.configuration.tlsConfiguration = .makeServerConfiguration(
143143
certificateChain: try NIOSSLCertificate.fromPEMFile("/path/to/cert.pem").map { .certificate($0) },
144-
privateKey: .file("/path/to/key.pem")
144+
privateKey: try NIOSSLPrivateKey(file: "/path/to/key.pem", format: .pem))
145145
)
146146
```
147147

docs/advanced/server.zh.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ app.http.server.configuration.supportVersions = [.two]
140140
// 启用 TLS.
141141
app.http.server.configuration.tlsConfiguration = .makeServerConfiguration(
142142
certificateChain: try NIOSSLCertificate.fromPEMFile("/path/to/cert.pem").map { .certificate($0) },
143-
privateKey: .file("/path/to/key.pem")
143+
privateKey: try NIOSSLPrivateKey(file: "/path/to/key.pem", format: .pem))
144144
)
145145
```
146146

0 commit comments

Comments
 (0)