feat(gateway): custom 401 page explaining how to add users
When HTTP Basic auth is enabled and credentials are absent or rejected, nginx serves a Catppuccin-styled 401 page that tells the operator which hivectl command to run to create a user. Uses error_page 401 =401 so the browser still receives a 401 status (login dialog fires on first visit) while getting a human-readable body when the dialog is dismissed. The exact-match location (= /__hive_auth_unauthorized) beats location / in nginx's prefix ordering so the internal subrequest does not loop back through auth_basic.
This commit is contained in:
parent
e4147e5cec
commit
a248c6bee1
1 changed files with 47 additions and 0 deletions
|
|
@ -59,6 +59,32 @@ let
|
|||
</body>
|
||||
</html>
|
||||
EOF
|
||||
cat > $out/unauthorized.html <<'EOF'
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>unauthorized ◆ hyperhive</title>
|
||||
<style>
|
||||
body { background: #1e1e2e; color: #cdd6f4; font: 14px/1.5 -apple-system, system-ui, sans-serif; margin: 0; padding: 4rem 1rem; text-align: center; }
|
||||
h1 { color: #f38ba8; font-size: 1.5rem; margin: 0 0 0.5rem; }
|
||||
p { max-width: 36rem; margin: 0.5rem auto; color: #a6adc8; }
|
||||
code { background: #313244; color: #f5c2e7; padding: 0.1rem 0.35rem; border-radius: 0.2rem; font-size: 0.92em; }
|
||||
pre { background: #181825; color: #cdd6f4; text-align: left; display: inline-block; padding: 0.75rem 1.25rem; border-radius: 0.4rem; margin: 0.75rem 0; font-size: 0.88em; line-height: 1.6; }
|
||||
.hint { color: #a6adc8; font-size: 0.9em; margin-top: 1.5rem; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<h1>◆ unauthorized</h1>
|
||||
<p>This hive is protected by HTTP Basic auth. Valid credentials are required.</p>
|
||||
<p class="hint">Operator: add a user with <code>hivectl gateway create-user</code>:</p>
|
||||
<pre>hivectl gateway create-user \
|
||||
--file /etc/hyperhive/gateway.htpasswd \
|
||||
<username> --password-stdin</pre>
|
||||
<p class="hint">Then reload your browser and enter the credentials when prompted.</p>
|
||||
</body>
|
||||
</html>
|
||||
EOF
|
||||
'';
|
||||
in
|
||||
{
|
||||
|
|
@ -586,9 +612,30 @@ in
|
|||
${lib.optionalString (cfg.auth.enable && cfg.auth.htpasswdFile != null) ''
|
||||
auth_basic "${cfg.auth.realm}";
|
||||
auth_basic_user_file /run/gateway-auth/${builtins.baseNameOf cfg.auth.htpasswdFile};
|
||||
# Serve a custom page when credentials are missing or wrong.
|
||||
# `=401` forces the final status to remain 401 so browsers
|
||||
# still present the login dialog on first visit; users who
|
||||
# dismiss the dialog see a page explaining how to add users
|
||||
# with `hivectl gateway create-user`.
|
||||
# The exact-match location below beats `location /` in nginx's
|
||||
# prefix ordering, so the internal subrequest does not loop back
|
||||
# through auth_basic.
|
||||
error_page 401 =401 /__hive_auth_unauthorized;
|
||||
''}
|
||||
'';
|
||||
};
|
||||
}
|
||||
// lib.optionalAttrs (cfg.auth.enable && cfg.auth.htpasswdFile != null) {
|
||||
# Internal-only target for the 401 error_page above.
|
||||
# `internal` prevents direct client access; `alias` serves
|
||||
# the pre-built HTML from the Nix store.
|
||||
"= /__hive_auth_unauthorized" = {
|
||||
extraConfig = ''
|
||||
internal;
|
||||
alias ${agentErrorPagesDir}/unauthorized.html;
|
||||
default_type text/html;
|
||||
'';
|
||||
};
|
||||
};
|
||||
# Per-agent location blocks, generated at runtime by
|
||||
# hive-c0re and written to /var/lib/hyperhive/gateway/agents.conf
|
||||
|
|
|
|||
Loading…
Reference in a new issue