Files
nginx-unit/test/node/header_name_valid/app.js
2018-12-11 18:30:58 +03:00

8 lines
170 B
JavaScript
Executable File

#!/usr/bin/env node
require('unit-http').createServer(function (req, res) {
res.writeHead(200, {});
res.setHeader('@$', 'test');
res.end();
}).listen(7080);