Repos / pytaku / 42ecdd829f
commit 42ecdd829f497881c8c645bdd432f744fe28183a
Author: Bùi Thành Nhân <hi@imnhan.com>
Date:   Sun Aug 30 16:43:35 2020 +0700

    CDN was a dud
    
    Bunnycdn kept routing me to US/EU edges for some reason (although they
    do have a Singapore edge), so things were slooooow. Since I don't have
    access to a better CDN, let's not use one at all. Therefore, there need
    to be more web workers to serve static stuff.
    
    I should really look into async servers huh.

diff --git a/contrib/systemd/pytaku.service b/contrib/systemd/pytaku.service
index f70e1d3..d369e16 100644
--- a/contrib/systemd/pytaku.service
+++ b/contrib/systemd/pytaku.service
@@ -10,7 +10,7 @@ Description=Pytaku server
 
 [Service]
 Environment="PYTHONUNBUFFERED=1"
-ExecStart=/bin/bash -c 'export PATH=$PATH:$HOME/.local/bin; pytaku -w 5 -b 0.0.0.0:5001'
+ExecStart=/bin/bash -c 'export PATH=$PATH:$HOME/.local/bin; pytaku -w 10 -b 0.0.0.0:5001'
 WorkingDirectory=/home/pytaku/pytaku
 Restart=always
 
diff --git a/pyproject.toml b/pyproject.toml
index 1f37d3d..47d030f 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -1,6 +1,6 @@
 [tool.poetry]
 name = "pytaku"
-version = "0.3.15"
+version = "0.3.16"
 description = "Self-hostable web-based manga reader"
 authors = ["Bùi Thành Nhân <hi@imnhan.com>"]
 license = "AGPL-3.0-only"