WIP: Docs

This commit is contained in:
Philipp Heckel 2021-12-01 23:08:12 -05:00
parent 1e7ae885b4
commit ae7bfb2c97
28 changed files with 822 additions and 1 deletions

View file

@ -0,0 +1,14 @@
<?php
// Check out https://ntfy.sh/phil_alerts in your browser after running this.
file_get_contents('https://ntfy.sh/phil_alerts', false, stream_context_create([
'http' => [
'method' => 'POST', // PUT also works
'header' =>
"Content-Type: text/plain\r\n" .
"Title: Unauthorized access detected\r\n" .
"Priority: urgent\r\n" .
"Tags: warning,skull",
'content' => 'Remote access to phils-laptop detected. Act right away.'
]
]));