json-server cannot access via local IP

I found the solution for this issue: json-server –host 192.168.1.XXX my_file.json Using this command, server is deployed on my local IP, and Windows asks for a firewall exception. Another solution is to switch to .NET server – another free simple fake server where I can setup local IP as endpoint. All it needs to: install … Read more

Apache2: ‘AH01630: client denied by server configuration’

If you are using Apache 2.4 You have to check allow and deny rules Check out http://httpd.apache.org/docs/2.4/upgrading.html#access In 2.2, access control based on client hostname, IP address, and other characteristics of client requests was done using the directives Order, Allow, Deny, and Satisfy. In 2.4, such access control is done in the same way as … Read more