From ae976f1e1af4ade1a9529b0c896b9dfc89573238 Mon Sep 17 00:00:00 2001 From: ericgaspar Date: Wed, 16 Mar 2022 21:27:19 +0100 Subject: [PATCH 1/7] Update default.yml --- conf/default.yml | 53 +++++++++++++++++++++--------------------------- 1 file changed, 23 insertions(+), 30 deletions(-) diff --git a/conf/default.yml b/conf/default.yml index 203fc98..01a726b 100644 --- a/conf/default.yml +++ b/conf/default.yml @@ -15,10 +15,7 @@ url: https://__DOMAIN__/ #───┘ Port and TLS settings └─────────────────────────────────── # -# Misskey supports two deployment options for public. -# - -# Option 1: With Reverse Proxy +# Misskey requires a reverse proxy to support HTTPS connections. # # +----- https://example.tld/ ------------+ # +------+ |+-------------+ +----------------+| @@ -26,30 +23,12 @@ url: https://__DOMAIN__/ # +------+ |+-------------+ +----------------+| # +---------------------------------------+ # -# You need to setup reverse proxy. (eg. nginx) -# You do not define 'https' section. +# You need to set up a reverse proxy. (e.g. nginx) +# An encrypted connection with HTTPS is highly recommended +# because tokens may be transferred in GET requests. -# Option 2: Standalone -# -# +- https://example.tld/ -+ -# +------+ | +---------------+ | -# | User | ---> | | Misskey (443) | | -# +------+ | +---------------+ | -# +------------------------+ -# -# You need to run Misskey as root. -# You need to set Certificate in 'https' section. - -# To use option 1, uncomment below line. -port: __PORT__ # A port that your Misskey server should listen. - -# To use option 2, uncomment below lines. -#port: 443 - -#https: -# # path for certification -# key: /etc/letsencrypt/live/example.tld/privkey.pem -# cert: /etc/letsencrypt/live/example.tld/fullchain.pem +# The port that your Misskey server should listen on. +port: __PORT__ # ┌──────────────────────────┐ #───┘ PostgreSQL configuration └──────────────────────────────── @@ -89,8 +68,8 @@ redis: # host: localhost # port: 9200 # ssl: false -# user: -# pass: +# user: +# pass: # ┌───────────────┐ #───┘ ID generation └─────────────────────────────────────────── @@ -108,7 +87,8 @@ redis: # ONCE YOU HAVE STARTED THE INSTANCE, DO NOT CHANGE THE # ID SETTINGS AFTER THAT! -id: "aid" +id: 'aid' + # ┌─────────────────────┐ #───┘ Other configuration └───────────────────────────────────── @@ -153,3 +133,16 @@ id: "aid" # Media Proxy #mediaProxy: https://example.com/proxy + +# Proxy remote files (default: false) +#proxyRemoteFiles: true + +# Sign to ActivityPub GET request (default: false) +#signToActivityPubGet: true + +#allowedPrivateNetworks: [ +# '127.0.0.1/32' +#] + +# Upload or download file size limits (bytes) +#maxFileSize: 262144000 From 8f71f6e7ce5785813d7ff8539fa9bd7fcf474f10 Mon Sep 17 00:00:00 2001 From: ericgaspar Date: Sat, 2 Apr 2022 09:22:58 +0200 Subject: [PATCH 2/7] Update updater.sh --- .github/workflows/updater.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/updater.sh b/.github/workflows/updater.sh index be1a01b..afd553f 100755 --- a/.github/workflows/updater.sh +++ b/.github/workflows/updater.sh @@ -69,6 +69,9 @@ case $asset_url in *".tar.gz") src="app" ;; + *) + src="" + ;; esac # If $src is not empty, let's process the asset From 30be8630854136f6c666d5f48c4f196030b75fce Mon Sep 17 00:00:00 2001 From: Memo <58190287+memo-567@users.noreply.github.com> Date: Sat, 2 Apr 2022 11:51:54 +0200 Subject: [PATCH 3/7] Update manifest.json --- manifest.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manifest.json b/manifest.json index b4ce7c4..3774712 100644 --- a/manifest.json +++ b/manifest.json @@ -6,7 +6,7 @@ "en": "Microblogging platform", "fr": "Platforme de Microblogging" }, - "version": "12.108.1~ynh2", + "version": "12.109.1~ynh1", "url": "https://join.misskey.page/en/", "upstream": { "license": "AGPL-3.0", From f098547f7acfc0bbdb157d502bb484650722ad0c Mon Sep 17 00:00:00 2001 From: Memo <58190287+memo-567@users.noreply.github.com> Date: Sat, 2 Apr 2022 11:59:15 +0200 Subject: [PATCH 4/7] Update app.src --- conf/app.src | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/conf/app.src b/conf/app.src index 19eed93..dd6a6d1 100644 --- a/conf/app.src +++ b/conf/app.src @@ -1,5 +1,5 @@ -SOURCE_URL=https://github.com/misskey-dev/misskey/archive/refs/tags/12.108.1.tar.gz -SOURCE_SUM=b0e05bf7a231d59190a0f666901795bb67f9fa0ca0e5070424df75c728f02a43 +SOURCE_URL=https://github.com/misskey-dev/misskey/archive/refs/tags/12.109.1.tar.gz +SOURCE_SUM=7B3F43FD8445C30A500D0F3D8604AA315FD66E43FA9CB394CCF58BA259367C8C SOURCE_SUM_PRG=sha256sum SOURCE_FORMAT=tar.gz SOURCE_IN_SUBDIR=true From 2730a701c339bf38feb1a947088ee5be2b425c50 Mon Sep 17 00:00:00 2001 From: Memo <58190287+memo-567@users.noreply.github.com> Date: Sat, 2 Apr 2022 12:00:40 +0200 Subject: [PATCH 5/7] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 5ef1dd7..c95b4b3 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ If you don't have YunoHost, please consult [the guide](https://yunohost.org/#/in Misskey is a decentralized microblogging platform. Since it exists within the Fediverse (a universe where various social media platforms are organized), it is mutually linked with other social media platforms. -**Shipped version:** 12.108.1~ynh2 +**Shipped version:** 12.109.1~ynh1 @@ -67,4 +67,4 @@ or sudo yunohost app upgrade misskey -u https://github.com/YunoHost-Apps/misskey_ynh/tree/testing --debug ``` -**More info regarding app packaging:** https://yunohost.org/packaging_apps \ No newline at end of file +**More info regarding app packaging:** https://yunohost.org/packaging_apps From 215f670b0f0f809a21f51a9e62e7398a66e2bfb9 Mon Sep 17 00:00:00 2001 From: Memo <58190287+memo-567@users.noreply.github.com> Date: Sat, 2 Apr 2022 12:01:43 +0200 Subject: [PATCH 6/7] Update README_fr.md --- README_fr.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README_fr.md b/README_fr.md index 85e9ff0..22aa611 100644 --- a/README_fr.md +++ b/README_fr.md @@ -13,7 +13,7 @@ Si vous n'avez pas YunoHost, regardez [ici](https://yunohost.org/#/install) pour Misskey est une plateforme de microblogging décentralisée. Puisqu'il existe au sein du Fediverse (un univers où diverses plateformes de médias sociaux sont organisées), il est mutuellement lié à d'autres plateformes de médias sociaux. -**Version incluse :** 12.108.1~ynh2 +**Version incluse :** 12.109.1~ynh1 @@ -62,4 +62,4 @@ ou sudo yunohost app upgrade misskey -u https://github.com/YunoHost-Apps/misskey_ynh/tree/testing --debug ``` -**Plus d'infos sur le packaging d'applications :** https://yunohost.org/packaging_apps \ No newline at end of file +**Plus d'infos sur le packaging d'applications :** https://yunohost.org/packaging_apps From 7f33c632fc0a8ecdc072505f4a6ed58b09dce465 Mon Sep 17 00:00:00 2001 From: yunohost-bot Date: Sat, 2 Apr 2022 17:02:21 +0000 Subject: [PATCH 7/7] Auto-update README --- README.md | 2 +- README_fr.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index c95b4b3..ec38dea 100644 --- a/README.md +++ b/README.md @@ -67,4 +67,4 @@ or sudo yunohost app upgrade misskey -u https://github.com/YunoHost-Apps/misskey_ynh/tree/testing --debug ``` -**More info regarding app packaging:** https://yunohost.org/packaging_apps +**More info regarding app packaging:** https://yunohost.org/packaging_apps \ No newline at end of file diff --git a/README_fr.md b/README_fr.md index 22aa611..6bf7093 100644 --- a/README_fr.md +++ b/README_fr.md @@ -62,4 +62,4 @@ ou sudo yunohost app upgrade misskey -u https://github.com/YunoHost-Apps/misskey_ynh/tree/testing --debug ``` -**Plus d'infos sur le packaging d'applications :** https://yunohost.org/packaging_apps +**Plus d'infos sur le packaging d'applications :** https://yunohost.org/packaging_apps \ No newline at end of file