summaryrefslogtreecommitdiffstats
path: root/nixos/modules/services/web-servers
diff options
context:
space:
mode:
authorAnthony Roussel <anthony@roussel.dev>2023-10-30 21:41:44 +0100
committerAnthony Roussel <anthony@roussel.dev>2023-11-11 10:49:01 +0100
commite30f48be948272df2d57237ef955023f937f4421 (patch)
tree02c0471df3c25372ac34b24c4bd7ffc204def8f8 /nixos/modules/services/web-servers
parent5744e4ba8f7ac7b662a67aeb2f5e3b847bcb1f93 (diff)
treewide: fix redirected and broken URLs
Using the script in maintainers/scripts/update-redirected-urls.sh
Diffstat (limited to 'nixos/modules/services/web-servers')
-rw-r--r--nixos/modules/services/web-servers/lighttpd/default.nix6
-rw-r--r--nixos/modules/services/web-servers/mighttpd2.nix4
-rw-r--r--nixos/modules/services/web-servers/nginx/default.nix2
3 files changed, 6 insertions, 6 deletions
diff --git a/nixos/modules/services/web-servers/lighttpd/default.nix b/nixos/modules/services/web-servers/lighttpd/default.nix
index 729a633a36cc..eaa113c0d52c 100644
--- a/nixos/modules/services/web-servers/lighttpd/default.nix
+++ b/nixos/modules/services/web-servers/lighttpd/default.nix
@@ -10,7 +10,7 @@ let
# List of known lighttpd modules, ordered by how the lighttpd documentation
# recommends them being imported:
- # http://redmine.lighttpd.net/projects/1/wiki/Server_modulesDetails
+ # https://redmine.lighttpd.net/projects/1/wiki/Server_modulesDetails
#
# Some modules are always imported and should not appear in the config:
# disallowedModules = [ "mod_indexfile" "mod_dirlisting" "mod_staticfile" ];
@@ -84,8 +84,8 @@ let
# server.modules += () entries in each sub-service extraConfig snippet,
# read this:
#
- # http://redmine.lighttpd.net/projects/1/wiki/Server_modulesDetails
- # http://redmine.lighttpd.net/issues/2337
+ # https://redmine.lighttpd.net/projects/1/wiki/Server_modulesDetails
+ # https://redmine.lighttpd.net/issues/2337
#
# Basically, lighttpd doesn't want to load (or even silently ignore) a
# module for a second time, and there is no way to check if a module has
diff --git a/nixos/modules/services/web-servers/mighttpd2.nix b/nixos/modules/services/web-servers/mighttpd2.nix
index 2d887af87c79..bdd6d8b62aa3 100644
--- a/nixos/modules/services/web-servers/mighttpd2.nix
+++ b/nixos/modules/services/web-servers/mighttpd2.nix
@@ -44,7 +44,7 @@ in {
type = types.lines;
description = lib.mdDoc ''
Verbatim config file to use
- (see http://www.mew.org/~kazu/proj/mighttpd/en/config.html)
+ (see https://kazu-yamamoto.github.io/mighttpd2/config.html)
'';
};
@@ -78,7 +78,7 @@ in {
type = types.lines;
description = lib.mdDoc ''
Verbatim routing file to use
- (see http://www.mew.org/~kazu/proj/mighttpd/en/config.html)
+ (see https://kazu-yamamoto.github.io/mighttpd2/config.html)
'';
};
diff --git a/nixos/modules/services/web-servers/nginx/default.nix b/nixos/modules/services/web-servers/nginx/default.nix
index f2e8585a9365..cf70dc325945 100644
--- a/nixos/modules/services/web-servers/nginx/default.nix
+++ b/nixos/modules/services/web-servers/nginx/default.nix
@@ -955,7 +955,7 @@ in
default = {};
description = lib.mdDoc ''
Configure a proxy cache path entry.
- See <http://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_cache_path> for documentation.
+ See <https://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_cache_path> for documentation.
'';
};