Skip to content

Commit 56a4590

Browse files
SamyOubouazizLaure-di
authored andcommitted
chore(gen): doc review MTA-5351 (scaleway#4097)
* chore(gen): doc review MTA-5351 * chore(gen): update * chore(gen): update * chore(gen): update * chore(gen): update * chore(gen): update * chore(gen): update * chore(gen): update * chore(gen): update * chore(gen): update
1 parent 67ec71c commit 56a4590

File tree

12 files changed

+60
-32
lines changed

12 files changed

+60
-32
lines changed

serverless/sql-databases/api-cli/secure-connection-ssl-tls.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ content:
66
h1: Secure connections using SSL/TLS
77
paragraph: Guide to securing your serverless SQL database connections using SSL/TLS protocols.
88
dates:
9-
validation: 2024-06-03
9+
validation: 2024-12-09
1010
posted: 2024-06-03
1111
---
1212

storage/object/troubleshooting/cannot-access-data.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ content:
77
paragraph: Troubleshoot issues related to accessing data in Scaleway Object Storage.
88
tags: help troubleshooting object storage blocked data locked fail unable impossible
99
dates:
10-
validation: 2024-06-04
10+
validation: 2024-12-09
1111
posted: 2024-06-04
1212
categories:
1313
- storage

storage/object/troubleshooting/cannot-delete-bucket.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ content:
77
paragraph: Guide to solving bucket deletion problems in Object Storage.
88
tags: help troubleshooting object storage delete bucket fail unable impossible
99
dates:
10-
validation: 2024-06-04
10+
validation: 2024-12-09
1111
posted: 2024-06-04
1212
categories:
1313
- storage

storage/object/troubleshooting/cannot-restore-glacier.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ content:
77
paragraph: Learn to troubleshoot issues when restoring Glacier objects.
88
tags: help troubleshooting object storage restore glacier fail unable impossible
99
dates:
10-
validation: 2024-06-04
10+
validation: 2024-12-09
1111
posted: 2024-06-04
1212
categories:
1313
- storage
@@ -20,11 +20,11 @@ categories:
2020

2121
## Problem
2222

23-
I need to retrieve my data from Scaleway Glacier, but the restore operation does not seem to function.
23+
I need to retrieve my data from Scaleway Glacier, but the restore operation does not seem to work.
2424

2525
## Cause
2626

27-
The time it takes to restore an object depends on the size of the object and if [multipart](/storage/object/concepts/#multipart-uploads) is configured. If your object is larger than 1 MB, it can take anywhere from a few minutes to 24 hours for restore to start.
27+
The time it takes to restore an object depends on the size of the object, and if [multipart](/storage/object/concepts/#multipart-uploads) is configured. If your object is larger than 1 MB, it can take anywhere from a few minutes to 24 hours for restore to start.
2828

2929
## Solution
3030

storage/object/troubleshooting/low-performance.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ content:
77
paragraph: Diagnose and improve Object Storage performance.
88
tags: help troubleshooting object storage poor performance issues slow
99
dates:
10-
validation: 2024-06-04
10+
validation: 2024-12-09
1111
posted: 2024-06-04
1212
categories:
1313
- storage

tutorials/install-parse-server/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ categories:
1010
- instances
1111
hero: assets/scaleway_parse.webp
1212
dates:
13-
validation: 2024-06-03
13+
validation: 2024-12-13
1414
posted: 2020-11-03
1515
---
1616

tutorials/install-pgbouncer/index.mdx

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ categories:
1010
- instances
1111
- postgresql-and-mysql
1212
dates:
13-
validation: 2024-06-03
13+
validation: 2024-12-12
1414
posted: 2022-02-24
1515
---
1616

17-
PgBouncer is a connection pooler for PostgreSQL. It sits between the application and the PostgreSQL server. PgBouncer opens multiple connections to the database and serves it to the application. This reduces connection opening costs for the application and gives a performance boost.
17+
[PgBouncer](https://www.pgbouncer.org/) is a connection pooler for [PostgreSQL](https://www.postgresql.org/). It sits between the application and the PostgreSQL server. PgBouncer opens multiple connections to the database and serves it to the application. This reduces connection opening costs for the application and gives a performance boost.
1818

1919
There are three types of pooling modes:
2020
- Session: The server connection will be released back to the pool after the client disconnects. (Default pooling method.)
@@ -35,7 +35,7 @@ In this tutorial, you can choose the pooling mode that best suits your workload.
3535

3636
The **PostgreSQL Global Development Group (PGDG)** provides an apt repository. After importing the repository, you can install the PgBouncer package.
3737

38-
1. Import the PDGG repository signing key:
38+
1. Import the PGDG repository signing key:
3939
```
4040
sudo apt install curl ca-certificates
4141
sudo install -d /usr/share/postgresql-common/pgdg
@@ -133,7 +133,7 @@ Here are a few commands that can be used after connecting to the `pgbouncer` dat
133133

134134
## Doing an online restart
135135

136-
- You can do an online restart without terminating the connections. PgBouncer launches a new process and loads open sockets from running PgBouncer. After that, the old process is stopped and the new process resumes. This way, connections are not interrupted. This is very useful when upgrading PgBouncer.
136+
You can do an online restart without terminating the connections. PgBouncer launches a new process and loads open sockets from running PgBouncer. After that, the old process is stopped and the new process resumes. This way, connections are not interrupted. This is very useful when upgrading PgBouncer.
137137
```
138138
sudo -u postgres pgbouncer -R /etc/pgbouncer/pgbouncer.ini -d
139139
```
@@ -150,17 +150,17 @@ Here are a few commands that can be used after connecting to the `pgbouncer` dat
150150
max_client_conn = max_client_conn + (max pool_size * total databases * total users)
151151
```
152152

153-
- You may want to increase this number to 5 or 10. When the specified `pool_size` is not enough, it uses the reserved pool and logs it. It can be used to determine `pool_size`. (Default: 0)
153+
- You can set this value to 5 or 10. When the specified `pool_size` is not enough, it uses the reserved pool and logs it. It can be used to determine `pool_size`. (Default: 0)
154154
```
155155
reserve_pool_size = 10
156156
```
157157

158-
- Connecting to PostgreSQL through PgBouncer will mask the PostgreSQL IP. This setting adds the client host address and port to the application name. It is very helpful when troubleshooting. (Default: 0)
158+
- Connecting to PostgreSQL through PgBouncer will mask the PostgreSQL IP. This setting adds the client host address and port to the application name, which can be helpful when troubleshooting. (Default: 0)
159159
```
160160
application_name_add_host = 1
161161
```
162162

163-
- By default, PgBouncer reuses server connections in LIFO (last-in, first-out). If you are using a TCP load balancer with a round-robin behind the PostgreSQL IP address, you may want to enable `server_round_robin` to achieve higher performance. (Default: 1)
163+
- By default, PgBouncer reuses server connections in LIFO (last-in, first-out). If you are using a TCP load balancer with a round-robin behind the PostgreSQL IP address, enable `server_round_robin` to achieve higher performance. (Default: 1)
164164
```
165165
server_round_robin = 1
166166
```

tutorials/installation-lemp-ubuntu-bionic/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ dates:
1515

1616
The LEMP-Stack references a group of software that can be used to serve dynamic web applications and websites. **LEMP** is an acronym and stands for:
1717

18-
- A Linux operating system
18+
- A [Linux](https://www.linux.org/) operating system
1919
- A [Nginx](http://nginx.org/) (pronounced as _Engine-X_) web server
2020
- A [MySQL](https://www.mysql.com/) (or [MariaDB](https://mariadb.org/), which is a drop-in fork of MySQL) database server
2121
- [PHP](http://www.php.net/) for dynamic data processing

tutorials/installation-uncomplicated-firewall/index.mdx

Lines changed: 17 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ tags: Firewall UFW port-25
99
categories:
1010
- instances
1111
dates:
12-
validation: 2024-06-03
12+
validation: 2024-12-13
1313
posted: 2018-07-18
1414
---
1515

@@ -21,12 +21,24 @@ UFW, or **[Uncomplicated FireWall](https://en.wikipedia.org/wiki/Uncomplicated_F
2121

2222
- A Scaleway account logged into the [console](https://console.scaleway.com)
2323
- [Owner](/identity-and-access-management/iam/concepts/#owner) status or [IAM permissions](/identity-and-access-management/iam/concepts/#permission) allowing you to perform actions in the intended Organization
24+
- An [Instance](/compute/instances/how-to/create-an-instance/) running on Ubuntu Focal Fossa or later
2425
- An [SSH key](/identity-and-access-management/organizations-and-projects/how-to/create-ssh-key/)
2526
- `sudo` privileges or access to the root user
2627

2728
## Installing UFW
2829

29-
UFW is available as a pre-built package in the apt repositories of Ubuntu. It can be easily installed via apt:
30+
UFW is available as a pre-built package in the apt repositories of Ubuntu. It can be easily installed via `apt`.
31+
32+
1. Connect to your Instance with SSH. In a terminal run:
33+
```
34+
ssh root@<your_instance_ip>
35+
```
36+
2. Update the system and upgrade the software already installed on the Instance.
37+
```
38+
apt update && apt upgrade -y
39+
```
40+
41+
3. run the command below to install UFW:
3042

3143
```code
3244
sudo apt-get install ufw
@@ -82,7 +94,7 @@ The services running on the machine used in this example need the following port
8294
```
8395

8496
<Message type="note">
85-
In this case `TCP` has not to be specified, as both, `TCP` and `UDP` are needed.
97+
In this case `TCP` has not to be specified, as both `TCP` and `UDP` are needed.
8698
</Message>
8799
5. Activate the new rules.
88100
```code
@@ -130,7 +142,8 @@ Over time, you may recognize that some of the rules you defined previously do no
130142
```
131143

132144
The numbers at the beginning of each row are the number of the rule in UFW.
145+
133146
2. To delete a rule, find its number and type:
134147
```code
135-
sudo ufw delete NUMBER
148+
sudo ufw delete <RULE_NUMBER>
136149
```

tutorials/jitsi-ubuntu-jammy-jellyfish/index.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ categories:
1010
- domains-and-dns
1111
tags: media videoconferencing Jitsi-Meet
1212
dates:
13-
validation: 2024-06-03
13+
validation: 2024-12-12
1414
posted: 2022-11-16
1515
---
1616

@@ -80,13 +80,13 @@ Jitsi Meet provides users with a complete suite of tools, making virtual meeting
8080

8181
When asked:
8282

83-
- Enter the FQDN of your Instance. For example `jitsi.mydomain.tld` and press **Enter**.
83+
- Enter the [FQDN](/network/domains-and-dns/concepts/#fully-qualified-domain-name-fqdn) of your Instance (for example `jitsi.mydomain.tld`), and press **Enter**.
8484
- Choose the `Let's Encrypt certificates` option as an SSL certificate and press **Enter**.
8585
- Enter your email address.
8686
- Enter your phone number (optional).
8787
7. Open a web browser and type the FQDN of your Instance, for example: `https://jitsi.mydomain.tld`. The following screen displays:
8888
<Lightbox src="scaleway-jitsi_home.webp" alt="" />
89-
8. Enter a name for your conference and press `Start meeting` to enter the conference room.
89+
8. Enter a name for your conference, and press `Start meeting` to enter the conference room.
9090
<Lightbox src="scaleway-jitsi-meet-conf-call.webp" alt="" />
9191

9292
For more information about Jitsi Meet and the advanced configuration of the tool, refer to the [official Jitsi documentation](https://jitsi.github.io/handbook/docs/intro/).

0 commit comments

Comments
 (0)