mirror of
https://github.com/ZeroTier/ZeroTierOne
synced 2025-08-14 02:27:38 -07:00
Updated README, fixed node.js test bug
This commit is contained in:
parent
8b9b593256
commit
b83aefcf8f
6 changed files with 468 additions and 96 deletions
|
@ -1,3 +0,0 @@
|
|||
Test: nodejs server did NOT respond!
|
||||
Test: nodejs server did NOT respond!
|
||||
Test: nodejs server did NOT respond!
|
|
@ -1,7 +1,7 @@
|
|||
var http = require('http');
|
||||
var server = http.createServer(function (request, response) {
|
||||
response.writeHead(200, {"Content-Type": "text/plain"});
|
||||
response.end("Welcome to the machine!\n");
|
||||
response.end("welcome to the machine!\n");
|
||||
});
|
||||
server.listen(8080);
|
||||
console.log("Server running!");
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
#./build.sh
|
||||
|
||||
# Relative paths are used in each test script, hence the need to change directories
|
||||
|
||||
# httpd
|
||||
cd httpd
|
||||
cd httpd-2.4.16-1.fc23.x86_64
|
||||
|
@ -28,5 +30,9 @@ cd redis-3.0.4-1.fc23.x86_64
|
|||
./test.sh
|
||||
cd ..
|
||||
|
||||
#node.js
|
||||
cd nodejs-0.10.36-4.fc23
|
||||
./test.sh
|
||||
cd ..
|
||||
|
||||
cd ..
|
Loading…
Add table
Add a link
Reference in a new issue