Programmatic automated way of determining: is my site accessible?

Question: I need a way to automate routine tests that tell me if my site is accessible from remote addresses. Local tests and scripts from my own machines are not enough because these tests are inconclusive (return false positives).

Is there a service or programming trick I can use to routinely try to connect to my site where the connections are always external to my local subnet?

+1


a source to share


2 answers


You can subscribe to a proxy service and then make http requests to that url. This way the data is fetched from its host first, which would be external to you.



+2


a source


You can use cURL with an external proxy.



+1


a source







All Articles