I already have Pi-hole 5.0 and PiVPN installed. I plan to install an NGINX server to serve one PHP script for personal use.
Here's the example script:
//voicefax2text.php on myserver.com
<?php
$fromstr = $_REQUEST['From'];
$recordingurlstr = $_REQUEST['RecordingUrl']; // for vm
$mediaurlstr = $_REQUEST['MediaUrl']; // for fax
$sms= "\"Body=Signalwire: ".$fromstr." ".$recordingurlstr." ".$mediaurlstr."\"";
exec ("curl https://[yourname].signalwire.com/api/laml/2010-04-01/Accounts/[yourProjectID]/Messages.json -X POST --data-urlencode "From=+14161231234" --data-urlencode {$sms} --data-urlencode "To=+14169876543" -u "[yourProjectID]:[yourToken]"");
?>
Can my Pi 1B handle it? If so, is there a guide that I can follow so I don't mess this up? Lol