From 1b7473b38ef61cdce4e3e547f4279e6e488fed85 Mon Sep 17 00:00:00 2001 From: lapineige Date: Fri, 26 May 2023 17:32:58 +0200 Subject: [PATCH 1/6] Update nginx.conf https://github.com/YunoHost-Apps/akkoma_ynh/commit/919a7181d253df93d83bc4b227fc63931231a2b0#comments --- conf/nginx.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conf/nginx.conf b/conf/nginx.conf index d5d8b95..37a65e3 100644 --- a/conf/nginx.conf +++ b/conf/nginx.conf @@ -37,5 +37,5 @@ location / { } location ~ ^/media { - more_set_headers Content-Security-Policy "script-src 'none';"; + more_set_headers Content-Security-Policy "script-src 'sandbox';"; } From 87e66bf0ea51bbd63f0820625b962c0a08773a38 Mon Sep 17 00:00:00 2001 From: lapineige Date: Fri, 26 May 2023 22:30:54 +0200 Subject: [PATCH 2/6] v3.9.3 --- manifest.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manifest.json b/manifest.json index 1eda781..b4a59ac 100644 --- a/manifest.json +++ b/manifest.json @@ -6,7 +6,7 @@ "en": "Federated social networking server built on ActivityPub open protocol", "fr": "Serveur de réseautage social fédéré basé sur le protocole ouvert ActivityPub" }, - "version": "3.9.2~ynh1", + "version": "3.9.3~ynh1", "url": "https://akkoma.social/", "upstream": { "license": "AGPL-3.0-only", From f2c9e2d1dd8f4c5f7f4c36e0d8ae1bfefe422962 Mon Sep 17 00:00:00 2001 From: yunohost-bot Date: Fri, 26 May 2023 20:30:58 +0000 Subject: [PATCH 3/6] 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 189d531..5403cd4 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ If you don't have YunoHost, please consult [the guide](https://yunohost.org/#/in Akkoma is a microblogging server software that can federate (= exchange messages with) other servers that support ActivityPub. What that means is that you can host a server for yourself or your friends and stay in control of your online identity, but still exchange messages with people on larger decentrilized and federated network. Akkoma will federate with all servers that implement ActivityPub, like Friendica, GNU Social, Hubzilla, Mastodon, Misskey, Pleroma, Peertube, or Pixelfed. -**Shipped version:** 3.9.2~ynh1 +**Shipped version:** 3.9.3~ynh1 **Demo:** https://otp.akkoma.dev diff --git a/README_fr.md b/README_fr.md index b1df3d6..6c938d6 100644 --- a/README_fr.md +++ b/README_fr.md @@ -19,7 +19,7 @@ Si vous n’avez pas YunoHost, regardez [ici](https://yunohost.org/#/install) po Akkoma is a microblogging server software that can federate (= exchange messages with) other servers that support ActivityPub. What that means is that you can host a server for yourself or your friends and stay in control of your online identity, but still exchange messages with people on larger decentrilized and federated network. Akkoma will federate with all servers that implement ActivityPub, like Friendica, GNU Social, Hubzilla, Mastodon, Misskey, Pleroma, Peertube, or Pixelfed. -**Version incluse :** 3.9.2~ynh1 +**Version incluse :** 3.9.3~ynh1 **Démo :** https://otp.akkoma.dev From 0cc0e0b5a514fdaea92f2623b5fd19704612e8a0 Mon Sep 17 00:00:00 2001 From: lapineige Date: Fri, 26 May 2023 22:32:31 +0200 Subject: [PATCH 4/6] v3.9.3 --- conf/amd64.src | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conf/amd64.src b/conf/amd64.src index 7f926a2..2471efa 100644 --- a/conf/amd64.src +++ b/conf/amd64.src @@ -1,5 +1,5 @@ SOURCE_URL=https://akkoma-updates.s3-website.fr-par.scw.cloud/stable/akkoma-amd64.zip -SOURCE_SUM=505f86cb7956e5721ac4d79380bd81ac3f8f6e64b452af5c121a815b1a7a58b6 +SOURCE_SUM=53acaecf82283d724c7c64b403b8130d22cbe050f6c224f55f73a158da2c52fe SOURCE_SUM_PRG=sha256sum SOURCE_FORMAT=zip SOURCE_IN_SUBDIR=true From 1429f974ad8be891d6f5d58ac525578e40609d44 Mon Sep 17 00:00:00 2001 From: lapineige Date: Fri, 26 May 2023 22:57:19 +0200 Subject: [PATCH 5/6] fix syntax --- conf/nginx.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conf/nginx.conf b/conf/nginx.conf index 37a65e3..64d3608 100644 --- a/conf/nginx.conf +++ b/conf/nginx.conf @@ -37,5 +37,5 @@ location / { } location ~ ^/media { - more_set_headers Content-Security-Policy "script-src 'sandbox';"; + more_set_headers "Content-Security-Policy script-src 'sandbox';"; } From 82b42e2aa29eadcb99a675204c666a44402926b2 Mon Sep 17 00:00:00 2001 From: lapineige Date: Fri, 26 May 2023 23:04:31 +0200 Subject: [PATCH 6/6] fix syntax (again) --- conf/nginx.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conf/nginx.conf b/conf/nginx.conf index 64d3608..8b4f555 100644 --- a/conf/nginx.conf +++ b/conf/nginx.conf @@ -37,5 +37,5 @@ location / { } location ~ ^/media { - more_set_headers "Content-Security-Policy script-src 'sandbox';"; + more_set_headers "Content-Security-Policy : script-src 'sandbox';"; }