about summary refs log tree commit diff
path: root/pkgs/servers/http
diff options
context:
space:
mode:
authorBen Siraphob <bensiraphob@gmail.com>2021-12-29 22:02:51 +0700
committerBen Siraphob <bensiraphob@gmail.com>2021-12-29 22:06:47 +0700
commit39a0a70d290c8059b13c78e5bb01e3bdef968737 (patch)
tree4f72b36f955fa5c90e5b4825b19ac4707debe261 /pkgs/servers/http
parent9d6fd49ad6efed0243259e1222f683d8d85322f0 (diff)
treewide: fix homepages with permanent redirect to https
Diffstat (limited to 'pkgs/servers/http')
-rw-r--r--pkgs/servers/http/couchdb/3.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/servers/http/couchdb/3.nix b/pkgs/servers/http/couchdb/3.nix
index 4a7144a8e185a..076edfb8453aa 100644
--- a/pkgs/servers/http/couchdb/3.nix
+++ b/pkgs/servers/http/couchdb/3.nix
@@ -34,7 +34,7 @@ stdenv.mkDerivation rec {
 
   meta = with lib; {
     description = "A database that uses JSON for documents, JavaScript for MapReduce queries, and regular HTTP for an API";
-    homepage = "http://couchdb.apache.org";
+    homepage = "https://couchdb.apache.org";
     license = licenses.asl20;
     platforms = platforms.all;
     maintainers = with maintainers; [ lostnet ];