From 0e31137e0b71c755f5fed871dfeb2410fc9019bd Mon Sep 17 00:00:00 2001
From: Marcin Chrzanowski
Date: Mon, 26 Jul 2021 12:58:16 +0200
Subject: Update donations link
---
cgi.html | 2 +-
git.html | 2 +-
rss.xml | 6 ++----
3 files changed, 4 insertions(+), 6 deletions(-)
diff --git a/cgi.html b/cgi.html
index f54d547..ef1526a 100644
--- a/cgi.html
+++ b/cgi.html
@@ -260,7 +260,7 @@ end
Contribution
diff --git a/git.html b/git.html
index 951e8d1..67ea0a3 100644
--- a/git.html
+++ b/git.html
@@ -182,7 +182,7 @@ mkdir git
Contribution
diff --git a/rss.xml b/rss.xml
index 51b5e11..7ff0899 100644
--- a/rss.xml
+++ b/rss.xml
@@ -228,8 +228,7 @@ end
Contribution
@@ -1645,8 +1644,7 @@ mkdir git
Contribution
--
cgit v1.2.3
From abc6b82e4a4b4900b364e64e2ed635f1ea61021a Mon Sep 17 00:00:00 2001
From: A Farzat
Date: Tue, 27 Jul 2021 00:28:17 +0900
Subject: Fix nextcloud https redirect
In the provided nginx server configuration for nextcloud, http
connections don't always redirect to https, so this was fixed.
---
nextcloud.html | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
diff --git a/nextcloud.html b/nextcloud.html
index 2ba4472..a49b93e 100644
--- a/nextcloud.html
+++ b/nextcloud.html
@@ -52,9 +52,7 @@ server {
listen [::]:80;
server_name yourwebsite.com;
- location /nextcloud {
- return 301 https://$server_name$request_uri;
- }
+ return 301 https://$server_name$request_uri;
}
server {
--
cgit v1.2.3