Compare commits

...

2 Commits

Author SHA1 Message Date
a9 379563ee46 Configurable ip+port within config.py 2022-01-06 05:18:01 +00:00
a9 2970b2d3f7 Configurable ip+port within config.py 2022-01-06 05:17:08 +00:00
2 changed files with 5 additions and 3 deletions

View File

@ -12,7 +12,7 @@ from bottle import static_file
from bottle import SimpleTemplate
from .get import get
from .config import IMAGE_CACHE, template_dir
from .config import IMAGE_CACHE, template_dir, bind_ip, bind_port
def get_timestamp_of_file(file):
@ -78,4 +78,4 @@ def start_server():
pass
mkdir(IMAGE_CACHE)
run(server='gevent', host='0.0.0.0')
run(server='gevent', host=bind_ip, port=bind_port)

View File

@ -1,3 +1,5 @@
IMAGE_CACHE = '/tmp/imgin-imgur-images/'
SINGLE_IMAGE_DELETE_AFTER_SECS = 600
template_dir = 'imgin/web/'
template_dir = 'imgin/web/'
bind_ip = '0.0.0.0'
bind_port = '8080'