23 lines
484 B
JavaScript
23 lines
484 B
JavaScript
|
const express = require('express');
|
||
|
const app = express();
|
||
|
|
||
|
app.use(express.urlencoded());
|
||
|
|
||
|
app.post("/auth", function (req, res) {
|
||
|
/* This server is only available to nginx */
|
||
|
const streamkey = req.body.key;
|
||
|
|
||
|
/* You can make a database of users instead :) */
|
||
|
if (streamkey === "supersecret23") {
|
||
|
res.status(200).send();
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
/* Reject the stream */
|
||
|
res.status(403).send();
|
||
|
});
|
||
|
|
||
|
app.listen(8000, function () {
|
||
|
console.log("Listening on port 8000!");
|
||
|
});
|