@cmb:
Um, founder of project here, thousands of source commits to my name. I replied to you just above.
You don't need to install anything else, just don't try to modify the GUI's nginx instance. Setup your own nginx.conf, add a shell script /usr/local/etc/rc.d/my-nginx.sh containing something like:
#!/bin/sh
/usr/local/sbin/nginx -c /path/to/your/nginx.conf
and you're done.
Hello,
I'm using nginx to serve up WPAD files, and I've added a wireless card to my pfsense box, so instead of WAN and LAN interfaces, I have WAN and WIFI1 and WIFI2 interfaces.
Since each WIFI interface has its own gateway address, I think I need one nginx server for each WIFI interface, since I need to serve up two different sets of WPAD files.
When I use the command above, the new nginx server seems to "bind" to the LAN interface (which I haven't yet disabled). Is there a way for me to tell these new instances of nginx to be available on my WIFI1 and WIFI2 interfaces?
-TM