From 159cb02bf0fa4af23b082f1e9fbbbf4de8e4f8af Mon Sep 17 00:00:00 2001 From: Flummi Date: Fri, 16 Feb 2018 13:31:40 +0000 Subject: [PATCH] Add new file --- cfg/config.mjs | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 cfg/config.mjs diff --git a/cfg/config.mjs b/cfg/config.mjs new file mode 100644 index 0000000..eda562f --- /dev/null +++ b/cfg/config.mjs @@ -0,0 +1,18 @@ +export default { + websrv: { + port: 8080, + static_options: { + dotfiles: "ignore", + etag: false, + extensions: ["html"], + index: false + } + }, + sql: { + server: "127.0.0.1", + port: 3306, + user: "", + password: "", + database: "" + } +}; \ No newline at end of file