Skip to content
Snippets Groups Projects
Commit d8a9f29e authored by Moritz Langenstein's avatar Moritz Langenstein
Browse files

(ml5717) Updated based on merge request comments

parent 702ee2e0
No related branches found
No related tags found
Loading
Pipeline #100937 failed
...@@ -2,6 +2,7 @@ default: ...@@ -2,6 +2,7 @@ default:
image: node:12 image: node:12
stages: stages:
- fetch
- deps - deps
- check - check
- build - build
...@@ -9,7 +10,7 @@ stages: ...@@ -9,7 +10,7 @@ stages:
- deploy - deploy
submodule_fetch: submodule_fetch:
stage: deps stage: fetch
script: script:
- chmod 600 .drawing-app-deploy.rsa - chmod 600 .drawing-app-deploy.rsa
- git submodule sync --recursive - git submodule sync --recursive
......
import express from "express" import express from "express"
import http from "http" import http from "http"
import process from "process"
import signalbuddy from "signalbuddy" import signalbuddy from "signalbuddy"
const host = "127.0.0.1"
const port = process.env.PORT || 3000 const port = process.env.PORT || 3000
const app = express() const app = express()
...@@ -17,21 +19,22 @@ const config = { ...@@ -17,21 +19,22 @@ const config = {
signalbuddy(server, config) signalbuddy(server, config)
app.use( app.use((request, response, next) => {
"/", response.on("finish", () => {
express.static("public", { console.log(
setHeaders: (_response, file_path) => { "[%s] [%s]: %s %s",
// Log access `${new Date()}`.split(" ", 5).join(" "),
console.log(Date.now(), file_path, "accessed") response.statusCode,
}, request.method.padStart(7),
}), request.originalUrl,
) )
})
server.listen(port, () => { next()
const host = server.address().address })
const port = server.address().port
console.log("Started server on %s, port: %s", host, port) app.use("/", express.static("public"))
console.log("Static file server: %s\n", `http://${host}:${port}/`) server.listen(port, host, () => {
console.log(`Listening on http://${host}:${port}`)
process.on("SIGINT", process.exit)
}) })
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment