Set response for public to static

This commit is contained in:
YourFriendlyNeighborhoodDealer 2018-12-05 16:00:22 +01:00
parent 6311b20168
commit 2eb246ed40

View file

@ -103,7 +103,7 @@ app.get('/manual', function(req, res) {
app.get('/public', function(req, res) {
var response = '@' + utils.ReadFile(motdFile);
response += utils.ReadFile(publicFile);
response += utils.ReadFile(staticFile);
res.write(response);
res.end();
});