Compare commits
6 Commits
9684bc3569
...
66b4d43fee
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
66b4d43fee | ||
|
|
5ecee06e58 | ||
|
|
9d5e30ea83 | ||
|
|
08452e06cc | ||
|
|
ab5494f4ad | ||
|
|
2e9bb9e920 |
@@ -1862,6 +1862,10 @@ button.btn-reboot:hover:not(:disabled) {
|
||||
overflow-y: auto;
|
||||
}
|
||||
|
||||
.onboarding-card--ports {
|
||||
overflow-y: visible;
|
||||
}
|
||||
|
||||
.onboarding-body-text {
|
||||
font-size: 0.92rem;
|
||||
color: var(--text-secondary);
|
||||
@@ -2121,13 +2125,13 @@ button.btn-reboot:hover:not(:disabled) {
|
||||
width: 100%;
|
||||
border-collapse: collapse;
|
||||
margin-top: 10px;
|
||||
font-size: 0.82rem;
|
||||
font-size: 0.92rem;
|
||||
}
|
||||
|
||||
.onboarding-port-table th {
|
||||
text-align: left;
|
||||
padding: 4px 8px;
|
||||
font-size: 0.72rem;
|
||||
padding: 6px 10px;
|
||||
font-size: 0.8rem;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.06em;
|
||||
color: var(--text-dim);
|
||||
@@ -2135,7 +2139,7 @@ button.btn-reboot:hover:not(:disabled) {
|
||||
}
|
||||
|
||||
.onboarding-port-table td {
|
||||
padding: 4px 8px;
|
||||
padding: 8px 10px;
|
||||
vertical-align: top;
|
||||
}
|
||||
|
||||
|
||||
@@ -99,7 +99,7 @@
|
||||
<strong>Ports 80 and 443 must be open for SSL certificates to work.</strong>
|
||||
</p>
|
||||
</div>
|
||||
<div class="onboarding-card onboarding-card--scroll" id="step-3-body">
|
||||
<div class="onboarding-card onboarding-card--ports" id="step-3-body">
|
||||
<p class="onboarding-loading">Checking ports…</p>
|
||||
</div>
|
||||
<div class="onboarding-footer">
|
||||
|
||||
@@ -28,15 +28,25 @@
|
||||
};
|
||||
|
||||
# ── Networking ──────────────────────────────────────────────
|
||||
networking.hostName = "nixos";
|
||||
networking.hostName = "sovransystemsos";
|
||||
networking.networkmanager.enable = true;
|
||||
networking.firewall.enable = true;
|
||||
networking.firewall.allowedTCPPorts = [ 80 443 8448 3051 ];
|
||||
networking.firewall.allowedUDPPorts = [ 80 443 8448 3051 ];
|
||||
networking.firewall.allowedUDPPorts = [ 80 443 8448 3051 5353 ];
|
||||
networking.firewall.allowedUDPPortRanges = [
|
||||
{ from = 49152; to = 65535; }
|
||||
];
|
||||
|
||||
# ── mDNS / Avahi (sovransystemsos.local) ──────────────────
|
||||
services.avahi = {
|
||||
enable = true;
|
||||
nssmdns4 = true;
|
||||
publish = {
|
||||
enable = true;
|
||||
addresses = true;
|
||||
};
|
||||
};
|
||||
|
||||
# ── Locale / Time ──────────────────────────────────────────
|
||||
time.timeZone = "America/Los_Angeles";
|
||||
i18n.defaultLocale = "en_US.UTF-8";
|
||||
|
||||
@@ -145,6 +145,14 @@ $HAVEN {
|
||||
EOF
|
||||
fi
|
||||
|
||||
# ── Sovran Hub (LAN mDNS access) ────────────────
|
||||
cat >> /run/caddy/Caddyfile <<EOF
|
||||
|
||||
http://sovransystemsos.local {
|
||||
reverse_proxy localhost:8937
|
||||
}
|
||||
EOF
|
||||
|
||||
# ── RTL (LAN access) ────────────────────────────
|
||||
cat >> /run/caddy/Caddyfile <<EOF
|
||||
|
||||
|
||||
@@ -99,7 +99,7 @@
|
||||
<strong>Ports 80 and 443 must be open for SSL certificates to work.</strong>
|
||||
</p>
|
||||
</div>
|
||||
<div class="onboarding-card onboarding-card--scroll" id="step-3-body">
|
||||
<div class="onboarding-card onboarding-card--ports" id="step-3-body">
|
||||
<p class="onboarding-loading">Checking ports…</p>
|
||||
</div>
|
||||
<div class="onboarding-footer">
|
||||
|
||||
Reference in New Issue
Block a user