Files
macports-www/ip.php
Ryan Schmidt 64f40cafb6 Add ip.php which shows the visitor's public IP
We may access this script from our CI infrastructure to keep tabs on the
IP addresses of the third-party build machines we use.
2021-04-27 14:41:02 -05:00

4 lines
94 B
PHP

<?php
header('Content-Type: text/plain; charset=utf-8');
echo $_SERVER['REMOTE_ADDR'] . "\n";