From 5f0d3b620fc35784109ab500b9ce314eebe9dfb2 Mon Sep 17 00:00:00 2001 From: jsudraud Date: Tue, 4 Mar 2025 10:14:15 +0100 Subject: [PATCH 1/5] feat(account): status page updates --- menu/navigation.json | 4 ++ .../scaleway-status-updates.mdx | 42 +++++++++++++++++++ tutorials/install-pgbouncer/index.mdx | 11 ++++- tutorials/nginx-reverse-proxy/index.mdx | 7 ++++ 4 files changed, 63 insertions(+), 1 deletion(-) create mode 100644 pages/account/reference-content/scaleway-status-updates.mdx diff --git a/menu/navigation.json b/menu/navigation.json index 2bed33322e..edbbe0d104 100644 --- a/menu/navigation.json +++ b/menu/navigation.json @@ -119,6 +119,10 @@ { "label": "Protecting yourself against phishing and fraud", "slug": "protecting-yourself-fraud-phishing" + }, + { + "label": "Subscribing to Scaleway status updates", + "slug": "scaleway-status-updates" } ], "label": "Additional Content", diff --git a/pages/account/reference-content/scaleway-status-updates.mdx b/pages/account/reference-content/scaleway-status-updates.mdx new file mode 100644 index 0000000000..8e58ded869 --- /dev/null +++ b/pages/account/reference-content/scaleway-status-updates.mdx @@ -0,0 +1,42 @@ +--- +meta: + title: Subscribing to Scaleway status updates + description: Learn how to subscribe to Scaleway status updates +content: + h1: Subscribing to Scaleway status updates + paragraph: Learn how to subscribe to Scaleway status updates +tags: troubleshooting status +dates: + validation: 2025-03-04 + posted: 2025-03-04 +categories: + - console +--- +Stay informed about Scaleway’s service status by subscribing to our [status page](https://status.scaleway.com/). This page provides real-time updates on incidents, maintenance, and service disruptions affecting our services. + +## How to subscribe to email notifications: +1. Visit [Scaleway status](https://status.scaleway.com/) page. +2. Click **Manage your updates** on the top right. +3. Enter the email address where you want to receive notifications. +4. Click **Subscribe via email**. +6. Select the specific services you want to receive notifications for. +7. Click **Save** at the bottom to update your preferences. +8. Click **Confirm subscription** on the email you received. + +## How to Unsubscribe or Manage Preferences: +1. Visit [Scaleway status](https://status.scaleway.com/) page. +2. Click **Manage your updates**. +3. Enter the email address used for status updates. An OTP (One Time Password) will be sent to your email address. +4. Enter the OTP sent to your email address. You will be redirected to your personal subscription management page. +5. Adjust your notification preferences or deselect all categories to unsubscribe. +6. Click **Save** to confirm your changes. + +## How to receive status notifications on Slack +1. Visit [Scaleway status](https://status.scaleway.com/) page. +2. Click **Manage your updates**. +3. Click the **Slack icon** (third tab). +4. Sign in to your Slack workspace and allow the required permissions. +5. Select which Slack channel you want notifications posted in. + +You may need to send an authorization request to your App Manager before you can install it. +Once installed, you get a success message on the status page you subscribed to, and a welcome message from the Status page app. \ No newline at end of file diff --git a/tutorials/install-pgbouncer/index.mdx b/tutorials/install-pgbouncer/index.mdx index 5c3fe5c16d..d13b73aa51 100644 --- a/tutorials/install-pgbouncer/index.mdx +++ b/tutorials/install-pgbouncer/index.mdx @@ -214,4 +214,13 @@ You can do an online restart without terminating the connections. PgBouncer laun systemctl reload pgbouncer.service ``` -This setup allows the basic installation of PgBouncer. For more information on commands and configuration, refer to the [official documentation](https://www.pgbouncer.org). \ No newline at end of file +This setup allows the basic installation of PgBouncer. For more information on commands and configuration, refer to the [official documentation](https://www.pgbouncer.org). + + + diff --git a/tutorials/nginx-reverse-proxy/index.mdx b/tutorials/nginx-reverse-proxy/index.mdx index 0d668f4d31..8eda52ace7 100644 --- a/tutorials/nginx-reverse-proxy/index.mdx +++ b/tutorials/nginx-reverse-proxy/index.mdx @@ -13,6 +13,13 @@ dates: posted: 2018-10-11 --- + + An Nginx HTTPS reverse proxy is an intermediary proxy service that takes a client request, passes it on to one or more servers, and subsequently delivers the server's response back to the client. While most common applications can run as web servers on their own, the Nginx web server can provide many advanced features such as load balancing, TLS/SSL capabilities, and acceleration that most specialized applications lack. There are significant benefits to setting up an Nginx HTTPS reverse proxy: From 8d8248a7b5ce78ea95028f4fa427cdd2cb3d1b74 Mon Sep 17 00:00:00 2001 From: jsudraud Date: Tue, 4 Mar 2025 10:22:33 +0100 Subject: [PATCH 2/5] fix last commit --- tutorials/install-pgbouncer/index.mdx | 13 +------------ tutorials/nginx-reverse-proxy/index.mdx | 7 ------- 2 files changed, 1 insertion(+), 19 deletions(-) diff --git a/tutorials/install-pgbouncer/index.mdx b/tutorials/install-pgbouncer/index.mdx index d13b73aa51..f6c6964146 100644 --- a/tutorials/install-pgbouncer/index.mdx +++ b/tutorials/install-pgbouncer/index.mdx @@ -212,15 +212,4 @@ You can do an online restart without terminating the connections. PgBouncer laun 5. Reload the `pgbouncer.service` to apply the configurations: ``` systemctl reload pgbouncer.service - ``` - -This setup allows the basic installation of PgBouncer. For more information on commands and configuration, refer to the [official documentation](https://www.pgbouncer.org). - - - + ``` \ No newline at end of file diff --git a/tutorials/nginx-reverse-proxy/index.mdx b/tutorials/nginx-reverse-proxy/index.mdx index 8eda52ace7..0d668f4d31 100644 --- a/tutorials/nginx-reverse-proxy/index.mdx +++ b/tutorials/nginx-reverse-proxy/index.mdx @@ -13,13 +13,6 @@ dates: posted: 2018-10-11 --- - - An Nginx HTTPS reverse proxy is an intermediary proxy service that takes a client request, passes it on to one or more servers, and subsequently delivers the server's response back to the client. While most common applications can run as web servers on their own, the Nginx web server can provide many advanced features such as load balancing, TLS/SSL capabilities, and acceleration that most specialized applications lack. There are significant benefits to setting up an Nginx HTTPS reverse proxy: From 336ae8106b8bd9ee725946ddb18f3eaedb63fe42 Mon Sep 17 00:00:00 2001 From: jsudraud Date: Tue, 4 Mar 2025 10:24:33 +0100 Subject: [PATCH 3/5] fix last commit --- tutorials/install-pgbouncer/index.mdx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tutorials/install-pgbouncer/index.mdx b/tutorials/install-pgbouncer/index.mdx index f6c6964146..c69427d45f 100644 --- a/tutorials/install-pgbouncer/index.mdx +++ b/tutorials/install-pgbouncer/index.mdx @@ -212,4 +212,6 @@ You can do an online restart without terminating the connections. PgBouncer laun 5. Reload the `pgbouncer.service` to apply the configurations: ``` systemctl reload pgbouncer.service - ``` \ No newline at end of file + ``` + + This setup allows the basic installation of PgBouncer. For more information on commands and configuration, refer to the [official documentation](https://www.pgbouncer.org). \ No newline at end of file From ddd3dd799732f7431f4c06ac283e12a71b3609ef Mon Sep 17 00:00:00 2001 From: jsudraud Date: Tue, 4 Mar 2025 10:25:12 +0100 Subject: [PATCH 4/5] fix last commit --- tutorials/install-pgbouncer/index.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tutorials/install-pgbouncer/index.mdx b/tutorials/install-pgbouncer/index.mdx index c69427d45f..5c3fe5c16d 100644 --- a/tutorials/install-pgbouncer/index.mdx +++ b/tutorials/install-pgbouncer/index.mdx @@ -214,4 +214,4 @@ You can do an online restart without terminating the connections. PgBouncer laun systemctl reload pgbouncer.service ``` - This setup allows the basic installation of PgBouncer. For more information on commands and configuration, refer to the [official documentation](https://www.pgbouncer.org). \ No newline at end of file +This setup allows the basic installation of PgBouncer. For more information on commands and configuration, refer to the [official documentation](https://www.pgbouncer.org). \ No newline at end of file From 4325950b8d188c82701c987923c3bc5dcc4f80ba Mon Sep 17 00:00:00 2001 From: Justine Sudraud <124775951+jsudraud@users.noreply.github.com> Date: Tue, 4 Mar 2025 14:29:34 +0100 Subject: [PATCH 5/5] Apply suggestions from code review MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Néda <87707325+nerda-codes@users.noreply.github.com> Co-authored-by: Rowena Jones <36301604+RoRoJ@users.noreply.github.com> --- .../reference-content/scaleway-status-updates.mdx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pages/account/reference-content/scaleway-status-updates.mdx b/pages/account/reference-content/scaleway-status-updates.mdx index 8e58ded869..ceccae72b2 100644 --- a/pages/account/reference-content/scaleway-status-updates.mdx +++ b/pages/account/reference-content/scaleway-status-updates.mdx @@ -15,7 +15,7 @@ categories: Stay informed about Scaleway’s service status by subscribing to our [status page](https://status.scaleway.com/). This page provides real-time updates on incidents, maintenance, and service disruptions affecting our services. ## How to subscribe to email notifications: -1. Visit [Scaleway status](https://status.scaleway.com/) page. +1. Visit the [Scaleway status](https://status.scaleway.com/) page. 2. Click **Manage your updates** on the top right. 3. Enter the email address where you want to receive notifications. 4. Click **Subscribe via email**. @@ -23,8 +23,8 @@ Stay informed about Scaleway’s service status by subscribing to our [status pa 7. Click **Save** at the bottom to update your preferences. 8. Click **Confirm subscription** on the email you received. -## How to Unsubscribe or Manage Preferences: -1. Visit [Scaleway status](https://status.scaleway.com/) page. +## How to unsubscribe or manage preferences: +1. Visit the [Scaleway status](https://status.scaleway.com/) page. 2. Click **Manage your updates**. 3. Enter the email address used for status updates. An OTP (One Time Password) will be sent to your email address. 4. Enter the OTP sent to your email address. You will be redirected to your personal subscription management page. @@ -32,11 +32,11 @@ Stay informed about Scaleway’s service status by subscribing to our [status pa 6. Click **Save** to confirm your changes. ## How to receive status notifications on Slack -1. Visit [Scaleway status](https://status.scaleway.com/) page. +1. Visit the [Scaleway status](https://status.scaleway.com/) page. 2. Click **Manage your updates**. 3. Click the **Slack icon** (third tab). 4. Sign in to your Slack workspace and allow the required permissions. 5. Select which Slack channel you want notifications posted in. -You may need to send an authorization request to your App Manager before you can install it. +You may need to send an authorization request to your App Manager before you can install it. Once installed, you get a success message on the status page you subscribed to, and a welcome message from the Status page app. \ No newline at end of file