diff --git a/docker-and-k8s-security/docker/server.js b/docker-and-k8s-security/docker/server.js new file mode 100644 index 0000000..7e762da --- /dev/null +++ b/docker-and-k8s-security/docker/server.js @@ -0,0 +1,14 @@ +const http = require('http'); + +const hostname = '0.0.0.0'; +const port = 8080; + +const server = http.createServer((req, res) => { + res.statusCode = 200; + res.setHeader('Content-Type', 'text/plain'); + res.end('Hello from node.js!'); +}); + +server.listen(port, hostname, () => { + console.log(`Server running at http://${hostname}:${port}/`); +}); \ No newline at end of file