From 379563ee46f08a0a56d25b2fed592cdcd03b8713 Mon Sep 17 00:00:00 2001 From: a9 Date: Thu, 6 Jan 2022 05:18:01 +0000 Subject: [PATCH] Configurable ip+port within config.py --- imgin/config.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/imgin/config.py b/imgin/config.py index 728fc41..44c86dc 100644 --- a/imgin/config.py +++ b/imgin/config.py @@ -1,3 +1,5 @@ IMAGE_CACHE = '/tmp/imgin-imgur-images/' SINGLE_IMAGE_DELETE_AFTER_SECS = 600 -template_dir = 'imgin/web/' \ No newline at end of file +template_dir = 'imgin/web/' +bind_ip = '0.0.0.0' +bind_port = '8080' \ No newline at end of file