nself security
nself security
Section titled “nself security”Security audit, setup, and status commands for hardening your ɳSelf deployment.
nself security <subcommand> [flags]Subcommands
Section titled “Subcommands”nself security audit
Section titled “nself security audit”Run security checks on your running stack. Inspects: UFW firewall status, fail2ban configuration, SSH hardening (key-only, root disabled), Docker port exposure, .env file permissions, and service binding.
nself security auditExample output:
Security Audit Results======================[PASS] UFW firewall is active[PASS] fail2ban is running[WARN] SSH root login is enabled, disable with `PermitRootLogin no`[PASS] Docker ports bound to 127.0.0.1[FAIL] .env.secrets is world-readable, run `chmod 600 .env.secrets`[PASS] All services bind to 127.0.0.1
Score: 4/6 checks passedExit codes: 0 all checks pass, 1 one or more checks failed.
nself security setup
Section titled “nself security setup”Apply security hardening steps. Runs in dry-run mode by default, showing what would change without modifying anything.
# Preview changes (dry-run)nself security setup
# Apply changes (requires root)sudo nself security setup --applyHardening steps applied:
- Enable and configure UFW (allow SSH, HTTP, HTTPS only)
- Install and configure fail2ban for SSH and Nginx
- Harden SSH config (disable root login, disable password auth)
- Set correct permissions on
.envfiles (600) - Verify Docker daemon binds to localhost only
nself security status
Section titled “nself security status”Show a one-line security posture summary for the current project.
nself security statusExample output:
Security: 5/6 checks passing | Last audit: 2 hours ago| Flag | Subcommand | Description |
|---|---|---|
--apply | setup | Execute hardening steps instead of dry-run (requires root) |
--json | audit, status | Output in JSON format |
--quiet | audit | Exit code only, no output |
See Also
Section titled “See Also”- Security-Policy: security disclosure and patching policy
- Guide-Production-Deployment: production hardening guide