<%- include('_head.ejs') %>
  System Runtime Information
<% if (process.env.RELEASE_INFO) { %> <% } %>
Hostname <%= info.hostname %>
System Uptime <%= info.uptime %>
OS Version <%= info.type %> - <%= info.release %>
Architecture <%= info.arch %>
Processors <%= info.cpus.length%> × <%= info.cpus[0].model %>
Memory <%= info.mem %> MB
Node Version <%= info.nodever %>
Release Info <%= process.env.RELEASE_INFO %>

  Server Environmental Variables
<% for(let envVar in process.env) { %> <% if (envVar.toUpperCase().includes('SECRET')) continue %> <% if (envVar.toUpperCase().includes('PWD')) continue %> <% if (envVar.toUpperCase().includes('PASSWORD')) continue %> <% if (envVar.toUpperCase().includes('KEY')) continue %> <% if (envVar.toUpperCase().includes('CONNSTR')) continue %> <% if (envVar.toUpperCase().includes('PATH')) continue %> <% if (envVar.toUpperCase().includes('NPM_')) continue %> <% if (envVar.toUpperCase().includes('NPM_')) continue %> <% } %>
<%= envVar %> <%= process.env[envVar] %>
<%- include('_foot.ejs') %>