Compare commits
10 Commits
095d5e46c8
...
2ce20e5907
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
2ce20e5907 | ||
|
|
2e59ae8a70 | ||
|
|
bc7bab2e62 | ||
|
|
ff4d8bd00d | ||
|
|
13086b244c | ||
|
|
b2b416b292 | ||
|
|
fb4797f109 | ||
|
|
5e5bfd847c | ||
|
|
0eb4fef6ad | ||
|
|
d14337656f |
@@ -4,19 +4,19 @@ description: Real-time system statistics - auto-updated via cron
|
|||||||
|
|
||||||
# System Statistics
|
# System Statistics
|
||||||
|
|
||||||
**Last Updated:** Sat Mar 28 10:10:00 PM EDT 2026
|
**Last Updated:** Sat Mar 28 10:40:00 PM EDT 2026
|
||||||
|
|
||||||
**Current Status:**
|
**Current Status:**
|
||||||
```
|
```
|
||||||
OS: Fedora Linux 42 (Workstation Edition) x86_64
|
OS: Fedora Linux 42 (Workstation Edition) x86_64
|
||||||
Host: KVM/QEMU Standard PC (i440FX + PIIX, 1996) (pc-i440fx-9.0)
|
Host: KVM/QEMU Standard PC (i440FX + PIIX, 1996) (pc-i440fx-9.0)
|
||||||
Kernel: Linux 6.17.7-200.fc42.x86_64
|
Kernel: Linux 6.17.7-200.fc42.x86_64
|
||||||
Uptime: 4 days, 15 hours, 14 mins
|
Uptime: 4 days, 15 hours, 44 mins
|
||||||
Packages: 2699 (rpm), 8 (flatpak)
|
Packages: 2699 (rpm), 8 (flatpak)
|
||||||
CPU: Intel(R) Core(TM) i7-6700 (7) @ 3.41 GHz
|
CPU: Intel(R) Core(TM) i7-6700 (7) @ 3.41 GHz
|
||||||
GPU: NVIDIA GeForce GTX 1070 Ti [Discrete]
|
GPU: NVIDIA GeForce GTX 1070 Ti [Discrete]
|
||||||
Memory: 7.92 GiB / 19.03 GiB (42%)
|
Memory: 8.12 GiB / 19.03 GiB (43%)
|
||||||
Swap: 3.09 GiB / 8.00 GiB (39%)
|
Swap: 3.63 GiB / 8.00 GiB (45%)
|
||||||
Disk (/): 2.48 TiB / 2.93 TiB (85%) - btrfs
|
Disk (/): 2.48 TiB / 2.93 TiB (85%) - btrfs
|
||||||
Local IP (ens18): 10.10.20.19/24
|
Local IP (ens18): 10.10.20.19/24
|
||||||
```
|
```
|
||||||
|
|||||||
@@ -2,4 +2,4 @@
|
|||||||
description: Auto-updated weather for Gananoque - auto-updated via cron
|
description: Auto-updated weather for Gananoque - auto-updated via cron
|
||||||
---
|
---
|
||||||
|
|
||||||
Weather: overcast clouds Temp: -2.06C Humidity: 58% Wind: 4.08m/s Precip: 0.0mm
|
Weather: overcast clouds Temp: -2.12C Humidity: 59% Wind: 4.19m/s Precip: 0.0mm
|
||||||
|
|||||||
57
system/infrastructure/gitea.md
Normal file
57
system/infrastructure/gitea.md
Normal file
@@ -0,0 +1,57 @@
|
|||||||
|
---
|
||||||
|
description: Gitea instance configuration and access details
|
||||||
|
---
|
||||||
|
---
|
||||||
|
description: Gitea instance configuration and access details for memory sync
|
||||||
|
---
|
||||||
|
|
||||||
|
# Gitea Infrastructure
|
||||||
|
|
||||||
|
## Instance Details
|
||||||
|
|
||||||
|
**Internal Endpoint:** `10.10.20.120:4455`
|
||||||
|
**External Endpoint:** `gitea.wiuf.net` (HTTPS, Cloudflare protected)
|
||||||
|
**Status:** Internal works, external has 413 errors due to reverse proxy limits
|
||||||
|
|
||||||
|
## Access Method
|
||||||
|
|
||||||
|
**Working URL Format:**
|
||||||
|
```
|
||||||
|
http://cfc7e6dc0f4323d6d3e608c15c2b41eb4c7b4073@10.10.20.120:4455/Fimeg/Redflag.git
|
||||||
|
```
|
||||||
|
|
||||||
|
**Authentication:** Token embedded in URL (no SSH key needed for HTTP)
|
||||||
|
|
||||||
|
## SSH Attempt (Failed)
|
||||||
|
|
||||||
|
**SSH Key:** `/home/ani/.ssh/gitea_ed25519`
|
||||||
|
**Created:** March 28, 2026 19:46
|
||||||
|
**Status:** SSH blocked from this machine - "Network is unreachable"
|
||||||
|
**Fallback:** HTTP with token auth
|
||||||
|
|
||||||
|
## Memory Repository
|
||||||
|
|
||||||
|
**Repo Name:** `Redflag`
|
||||||
|
**Owner:** `Fimeg`
|
||||||
|
**Full URL:** `http://cfc7e6dc0f4323d6d3e608c15c2b41eb4c7b4073@10.10.20.120:4455/Fimeg/Redflag.git`
|
||||||
|
|
||||||
|
## Setup Notes
|
||||||
|
|
||||||
|
- External HTTPS (gitea.wiuf.net) returns HTTP 413 due to Cloudflare/reverse proxy body size limits
|
||||||
|
- Internal endpoint (10.10.20.120:4455) bypasses Cloudflare and works
|
||||||
|
- SSH connectivity not available from Fedora VM to Gitea host
|
||||||
|
- HTTP basic auth with token is the working path
|
||||||
|
|
||||||
|
## For Memory Sync
|
||||||
|
|
||||||
|
```bash
|
||||||
|
# Add remote
|
||||||
|
cd "$MEMORY_DIR"
|
||||||
|
git remote add gitea http://cfc7e6dc0f4323d6d3e608c15c2b41eb4c7b4073@10.10.20.120:4455/Fimeg/Redflag.git
|
||||||
|
|
||||||
|
# Push
|
||||||
|
git push gitea master
|
||||||
|
```
|
||||||
|
|
||||||
|
---
|
||||||
|
*Setup: March 28, 2026*
|
||||||
@@ -5,7 +5,7 @@ limit: 10000
|
|||||||
|
|
||||||
# Synthetic API Quota
|
# Synthetic API Quota
|
||||||
|
|
||||||
**Last Updated:** 2026-03-28T22:00:01-04:00
|
**Last Updated:** 2026-03-28T22:40:01-04:00
|
||||||
|
|
||||||
## Current Status
|
## Current Status
|
||||||
|
|
||||||
@@ -14,20 +14,20 @@ limit: 10000
|
|||||||
{
|
{
|
||||||
"subscription": {
|
"subscription": {
|
||||||
"limit": 335,
|
"limit": 335,
|
||||||
"requests": 53,
|
"requests": 4,
|
||||||
"renewsAt": "2026-03-29T02:26:35.001Z"
|
"renewsAt": "2026-03-29T07:27:05.168Z"
|
||||||
},
|
},
|
||||||
"search": {
|
"search": {
|
||||||
"hourly": {
|
"hourly": {
|
||||||
"limit": 250,
|
"limit": 250,
|
||||||
"requests": 0,
|
"requests": 0,
|
||||||
"renewsAt": "2026-03-29T03:00:01.002Z"
|
"renewsAt": "2026-03-29T03:40:01.168Z"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"freeToolCalls": {
|
"freeToolCalls": {
|
||||||
"limit": 1250,
|
"limit": 1250,
|
||||||
"requests": 426.5,
|
"requests": 439.5,
|
||||||
"renewsAt": "2026-03-29T15:01:57.169Z"
|
"renewsAt": "2026-03-29T15:01:57.337Z"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
@@ -69,4 +69,4 @@ synu
|
|||||||
|
|
||||||
| Timestamp | Status | Notes |
|
| Timestamp | Status | Notes |
|
||||||
|-------------|--------|-------|
|
|-------------|--------|-------|
|
||||||
| 2026-03-28 22:00 | ✅ checked | Auto-check |
|
| 2026-03-28 22:40 | ✅ checked | Auto-check |
|
||||||
|
|||||||
Reference in New Issue
Block a user