From cfe8561a01b2f2b94c7cb7cf98b25175f88f2f05 Mon Sep 17 00:00:00 2001 From: Stefan Pejcic Date: Thu, 27 Feb 2025 09:11:57 +0100 Subject: [PATCH] Delete website/docs/articles/domains/all-domains-show-nginx-502-error.md --- .../all-domains-show-nginx-502-error.md | 20 ------------------- 1 file changed, 20 deletions(-) delete mode 100644 website/docs/articles/domains/all-domains-show-nginx-502-error.md diff --git a/website/docs/articles/domains/all-domains-show-nginx-502-error.md b/website/docs/articles/domains/all-domains-show-nginx-502-error.md deleted file mode 100644 index efa5572f..00000000 --- a/website/docs/articles/domains/all-domains-show-nginx-502-error.md +++ /dev/null @@ -1,20 +0,0 @@ -# All Domains show Nginx 502 error - -This happens when a third party user/service restarted docker and the floating ip service failed to reload the `/etc/hosts` file with new docker private IP addresses. - -To resolve this issue, run: - -```bash -opencli server-recreate_hosts -``` - -Then restart Nginx service: - -- soft restart (reload without downtime): - ```bash - docker exec nginx bash -c "nginx -t && nginx -s reload" - ``` -- hard restart (stop and start again): - ```bash - docker restart nginx - ```