From 021a7851cc47cef0a2f0e759bd545d7733667f6f Mon Sep 17 00:00:00 2001 From: Mark Veidemanis Date: Sun, 19 Nov 2017 14:51:55 +0000 Subject: [PATCH] Add an example configuration file --- .gitignore | 2 +- example.json | 7 +++++++ 2 files changed, 8 insertions(+), 1 deletion(-) create mode 100644 example.json diff --git a/.gitignore b/.gitignore index 6081d82..1cc6c46 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,5 @@ *.pyc *.db *.pem -*.json +config.json env/ diff --git a/example.json b/example.json new file mode 100644 index 0000000..baf3a03 --- /dev/null +++ b/example.json @@ -0,0 +1,7 @@ +{ + "port":13867, + "bind":"127.0.0.1", + "usessl":true, + "key":"key.pem", + "cert":"cert.pem" +}