Remove Nginx configuration example from README

Removed example Nginx configuration from README.
This commit is contained in:
MacRimi
2025-11-15 16:17:31 +01:00
committed by GitHub
parent 470b6359ba
commit 6c1f50a230

View File

@@ -93,17 +93,6 @@ ProxMenux Monitor includes built-in support for reverse proxy configurations. If
- Adjust API endpoints to work correctly through the proxy
- Maintain full functionality for all features including authentication and API access
**Example Nginx configuration:**
```nginx
location /proxmenux-monitor/ {
proxy_pass http://localhost:8008/;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header X-Forwarded-Host $host;
}
```
## Authentication & Security