Is it possible to whitelist which IP's can access a built-in PHP server?
If opened with php -S 127.0.0.1:8082
it will only be visible to localhost. If done with php -S 192.168.0.10:8082
it will be visible to my entire local network. If done by php -S 0.0.0.0:8082
makes it available to whole internet.
Is it possible to limit the webserver availability to a specific set of IPs (just few IPs in my local network) without using apache, but only PHP's built in server?