Not sure if this is useful or will even help but leaving it posted just in case.
Run the server so it binds to all local ip addresses
1 | bin /cake server -H 0.0.0.0 |
I have Hyper-V installed so change the rules to make it work
1 2 3 4 | Set-NetFirewallHyperVVMSetting -Name '{40E0AC32-46A5-438A-A0B2-2B479E8F2E90}' -DefaultInboundAction Allow New-NetFirewallHyperVRule -Name "CakePHPDevServer" -DisplayName "CakePHP Dev Web Server" -Direction Inbound -VMCreatorId '{40E0AC32-46A5-438A-A0B2-2B479E8F2E90}' -Protocol TCP -LocalPorts 8765 |
1 | netsh interface portproxy add v4tov4 listenport=8765 listenaddress=0.0.0.0 connectport=8765 connectaddress=10.197.3.190 |
0 Comments