I have two network board in my pc:
The main one has the local ip -> 192.168.1.111 The secondary ones has the local ip -> 192.168.0.200
The main one has inter
nginx is useful for forwarding HTTP on many platforms including Windows. It's easy to setup and extend with more advanced configuration. A basic configuration could look something like this:
events {} http { server { listen 192.168.1.111:4422; location / { proxy_pass http://192.168.2.33:80/; } } }