From ea62f72df2709a1c34014866c4b4be49b06ef00e Mon Sep 17 00:00:00 2001 From: vukisz <48272340+vukisz@users.noreply.github.com> Date: Sat, 18 Jan 2025 14:08:44 +0200 Subject: [PATCH] Update solax.markdown Reverse wifi proxy not needed anymy --- source/_integrations/solax.markdown | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/source/_integrations/solax.markdown b/source/_integrations/solax.markdown index c148a7d2a2dc..6c2588f9c4fc 100644 --- a/source/_integrations/solax.markdown +++ b/source/_integrations/solax.markdown @@ -46,16 +46,3 @@ There are generally at least 3 sensors from your inverter that you need to confi - The consumption sensor (in kWh) for the **Grid Consumption**. - The feed-in sensor (in kWh) for the **Return to grid**, for example, the solar panel energy you do not consume and return to the grid instead. - The on-grid yield sensor (in kWh) for the **Solar production**. - -### Note - -Inverter models with newer firmware (and also those using devices like PocketWifi) no longer expose an API when connected to your wireless network, they do however continue to expose it on their own broadcasted SSID. To use this sensor in this case it is necessary to set up a reverse proxy with something like NGINX and use a Raspberry Pi (or similar) with two network connections (one being Wi-Fi that connects to the inverters SSID). - - -Example NGINX configuration - -```text -location / { - proxy_pass http://5.8.8.8; -} -```