1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/mygpo_ynh.git synced 2024-09-03 19:55:52 +02:00

Merge pull request #29 from YunoHost-Apps/testing

Testing
This commit is contained in:
eric_G 2023-11-12 19:33:00 +01:00 committed by GitHub
commit 912c9c7556
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 18 additions and 16 deletions

View file

@ -19,7 +19,7 @@ If you don't have YunoHost, please consult [the guide](https://yunohost.org/#/in
This is the webservice powering the https://gpodder.net website. It can be used to sync podcast subscriptions with [supported clients](https://gpoddernet.readthedocs.io/en/latest/user/clients.html). This is the webservice powering the https://gpodder.net website. It can be used to sync podcast subscriptions with [supported clients](https://gpoddernet.readthedocs.io/en/latest/user/clients.html).
**Shipped version:** 2.11.20220622~ynh2 **Shipped version:** 2.11.20221222~ynh1
**Demo:** https://gpodder.net **Demo:** https://gpodder.net

View file

@ -19,7 +19,7 @@ Si vous navez pas YunoHost, regardez [ici](https://yunohost.org/#/install) po
This is the webservice powering the https://gpodder.net website. It can be used to sync podcast subscriptions with [supported clients](https://gpoddernet.readthedocs.io/en/latest/user/clients.html). This is the webservice powering the https://gpodder.net website. It can be used to sync podcast subscriptions with [supported clients](https://gpoddernet.readthedocs.io/en/latest/user/clients.html).
**Version incluse :** 2.11.20220622~ynh2 **Version incluse :** 2.11.20221222~ynh1
**Démo :** https://gpodder.net **Démo :** https://gpodder.net

View file

@ -1,5 +1,5 @@
SOURCE_URL=https://github.com/gpodder/mygpo/archive/60caf1adfb6c0dbeb21828a0d1ae0dfebc279abd.tar.gz SOURCE_URL=https://github.com/gpodder/mygpo/archive/80c41dc0c9a58dc0e85f6ef56662cdfd0d6e3b16.tar.gz
SOURCE_SUM=15076ba34b6a85f61923e78dd84ce93384daca92331f34d20333be4c3d915b08 SOURCE_SUM=cce51ef812e5a692ea38b82cb559a4982dcf76ad34d6adf73aff2c5299cb5573
SOURCE_SUM_PRG=sha256sum SOURCE_SUM_PRG=sha256sum
SOURCE_FORMAT=tar.gz SOURCE_FORMAT=tar.gz
SOURCE_IN_SUBDIR=true SOURCE_IN_SUBDIR=true

View file

@ -6,7 +6,7 @@
"en": "Manage podcast subscriptions, and sync them between apps and devices", "en": "Manage podcast subscriptions, and sync them between apps and devices",
"fr": "Gérez vos sousciptions balado, et sychronisez-lez entre vos applis et appareils" "fr": "Gérez vos sousciptions balado, et sychronisez-lez entre vos applis et appareils"
}, },
"version": "2.11.20220622~ynh2", "version": "2.11.20221222~ynh1",
"url": "https://github.com/gpodder/mygpo", "url": "https://github.com/gpodder/mygpo",
"upstream": { "upstream": {
"license": "AGPL-3.0-only", "license": "AGPL-3.0-only",

View file

@ -1,9 +1,9 @@
diff --git a/conf/gunicorn.conf.py b/conf/gunicorn.conf.py diff --git a/conf/gunicorn.conf.py b/conf/gunicorn.conf.py
index 726cd5f4..c13809cc 100644 index c5940616..28c84d79 100644
--- a/conf/gunicorn.conf.py --- a/conf/gunicorn.conf.py
+++ b/conf/gunicorn.conf.py +++ b/conf/gunicorn.conf.py
@@ -1,16 +1,16 @@ @@ -1,17 +1,17 @@
import multiprocessing # import multiprocessing
import os import os
-bind = "unix:/tmp/mygpo.sock" -bind = "unix:/tmp/mygpo.sock"
@ -14,11 +14,13 @@ index 726cd5f4..c13809cc 100644
# The maximum number of requests a worker will process before restarting. # The maximum number of requests a worker will process before restarting.
# max_requests = 1000 # max_requests = 1000
-errorlog = "/var/log/gunicorn/error.log" -log_dir = os.getenv("LOGGING_DIR_GUNICRON", "/var/log/gunicorn/")
-accesslog = "/var/log/gunicorn/access.log" -errorlog = log_dir + "error.log"
-accesslog = log_dir + "access.log"
-loglevel = "info" -loglevel = "info"
+#errorlog = "/var/log/gunicorn/error.log" +#log_dir = os.getenv("LOGGING_DIR_GUNICRON", "/var/log/gunicorn/")
+#accesslog = "/var/log/gunicorn/access.log" +#errorlog = log_dir + "error.log"
+#accesslog = log_dir + "access.log"
+#loglevel = "info" +#loglevel = "info"
access_log_format = '%(h)s %(l)s %(u)s %(t)s "%(r)s" %(s)s %(b)s %(T)s "%(f)s" "%(a)s"' access_log_format = '%(h)s %(l)s %(u)s %(t)s "%(r)s" %(s)s %(b)s %(T)s "%(f)s" "%(a)s"'