Skip to content

Instantly share code, notes, and snippets.

@Valinwolf
Valinwolf / .vimrc
Last active January 14, 2020 21:17
My VIM Configs
set mouse-=a
@Valinwolf
Valinwolf / auth.php
Created February 8, 2022 17:20
Owncast Recordings System
#/var/www/somewhere/auth.php
<?php
if($_POST['name']=="YOUR_STREAM_KEY") {
http_response_code(200);
exit();
} else {
http_response_code(401);
exit();
}