Delete website/docs/articles/domains/all-domains-show-nginx-502-error.md

This commit is contained in:
Stefan Pejcic 2025-02-27 09:11:57 +01:00 committed by GitHub
parent 4f7a24e726
commit cfe8561a01
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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
```