Skip to content

Commit 73a4c01

Browse files
authored
Translation of secureserver.md (#31)
1 parent 6b4ec24 commit 73a4c01

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

sections/security/secureserver.french.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,24 @@
1-
# Using HTTPS to encrypt the client-server connection
1+
# Utilisation du HTTPS pour crypter la connexion client-serveur
22

33
<br/><br/>
44

55

6-
### One Paragraph Explainer
6+
### Un paragraphe d'explication
77

8-
Using services such as [Let'sEncrypt](https://letsencrypt.org/), a certificate authority which provides __free__ SSL/TLS certificates, can help encrypt the communication of your applications. Node.js frameworks like [Express](http://expressjs.com/) (based on the core `https` module) support SSL/TLS, which can be implemented in a few lines of code.
8+
L'utilisation de services tels que [Let'sEncrypt](https://letsencrypt.org/), une autorité de certification qui fournit __gratuitement__ des certificats SSL/TLS, peut aider à crypter la communication de vos applications. Les frameworks Node.js comme [Express](http://expressjs.com/) (fondé sur le module de base `https`) prend en charge SSL/TLS, qui peut être implémenté en quelques lignes de code.
99

10-
You can also configure SSL/TLS on a reverse proxy, such as [NGINX](http://nginx.org/en/docs/http/configuring_https_servers.html) or HAProxy.
10+
Vous pouvez également configurer SSL/TLS sur un reverse proxy, tel que [NGINX](http://nginx.org/en/docs/http/configuring_https_servers.html) ou HAProxy.
1111

1212
<br/><br/>
1313

14-
### Code Example – Enabling SSL/TLS using the Express framework
14+
### Exemple de code - Activation SSL/TLS à l'aide du framework Express
1515

1616
```javascript
1717
const express = require('express');
1818
const https = require('https');
1919
const app = express();
2020
const options = {
21-
// The path should be changed accordingly to your setup
21+
// Le chemin doit être modifié en fonction de votre configuration
2222
cert: fs.readFileSync('./sslcert/fullchain.pem'),
2323
key: fs.readFileSync('./sslcert/privkey.pem')
2424
};

0 commit comments

Comments
 (0)