lamassu: fix misleading adminPort option
- Clarify adminPort is only used in dev mode (port 8070) - Production mode always uses port 443 (hardcoded upstream) - Remove unused ADMIN_SERVER_PORT env var (not read by upstream) - Fix status script to show correct port and use https 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
parent
471a4d982f
commit
1383421991
1 changed files with 7 additions and 4 deletions
|
|
@ -43,7 +43,11 @@ in
|
||||||
adminPort = mkOption {
|
adminPort = mkOption {
|
||||||
type = types.port;
|
type = types.port;
|
||||||
default = 8070;
|
default = 8070;
|
||||||
description = "Port for the lamassu admin interface";
|
description = ''
|
||||||
|
Port for the lamassu admin interface in dev mode.
|
||||||
|
Only used when devMode = true. In production mode, the admin
|
||||||
|
interface always runs on port 443 (hardcoded in upstream).
|
||||||
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
dataDir = mkOption {
|
dataDir = mkOption {
|
||||||
|
|
@ -426,7 +430,6 @@ in
|
||||||
|
|
||||||
environment = {
|
environment = {
|
||||||
NODE_ENV = "production";
|
NODE_ENV = "production";
|
||||||
ADMIN_SERVER_PORT = toString cfg.adminPort;
|
|
||||||
LOG_LEVEL = cfg.logLevel;
|
LOG_LEVEL = cfg.logLevel;
|
||||||
HOSTNAME = cfg.hostname;
|
HOSTNAME = cfg.hostname;
|
||||||
CA_PATH = cfg.certPath;
|
CA_PATH = cfg.certPath;
|
||||||
|
|
@ -509,8 +512,8 @@ in
|
||||||
sudo -u ${cfg.database.user} ${pkgs.postgresql}/bin/psql -d ${cfg.database.name} -c "SELECT version();"
|
sudo -u ${cfg.database.user} ${pkgs.postgresql}/bin/psql -d ${cfg.database.name} -c "SELECT version();"
|
||||||
echo ""
|
echo ""
|
||||||
echo "=== Network Access ==="
|
echo "=== Network Access ==="
|
||||||
echo "Server: http://localhost:${toString cfg.serverPort}"
|
echo "Server API: https://localhost:${toString cfg.serverPort}"
|
||||||
echo "Admin: http://localhost:${toString cfg.adminPort}"
|
echo "Admin UI: https://localhost:${if cfg.devMode then toString cfg.adminPort else "443"}"
|
||||||
'')
|
'')
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue