I have two web services(ie my_public_api and my_private_api) running in server1. (PHP,Apache)
http:// ipaddress/my_public_api — Can be accessed by everyone.
http:// ipaddress/otherfuncation/my_private_api – should be accessed only by approved user or specific ipaddress(server2)
I would like to implement some authentication for this. Can this be done using htpasswd basic authentication? if not what could be possible way to implement this.
In case if I use client authentication, is that possible only to protect my private_api and let the my_public_api accessble to everyone.
I found out a way to accomplish this using SSL,
check here to know how to set up SSL certificates
eg: httpd.conf
Check here for more details