fix: IndeedHub port 7778, podman registries v2 format

- IndeedHub container port changed from 7777 to 7778 (7777 used by nostr-relay)
- Nginx proxy updated to route to 7778
- Backend config.rs port mapping updated
- Podman registries.conf switched to v2 format (fixes mixed v1/v2 error)

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Dorian 2026-04-11 12:32:32 -04:00
parent a279be8d79
commit e7c6913f7d
3 changed files with 9 additions and 12 deletions

View File

@ -786,7 +786,7 @@ pub(super) async fn get_app_config(
]),
),
"indeedhub" => (
vec!["8190:3000".to_string()],
vec!["7778:7777".to_string()],
vec![],
vec![
"NODE_ENV=production".to_string(),

View File

@ -408,7 +408,7 @@ server {
sub_filter '</head>' '<script src="/nostr-provider.js"></script></head>';
}
location /app/indeedhub/_next/ {
proxy_pass http://127.0.0.1:7777/_next/;
proxy_pass http://127.0.0.1:7778/_next/;
proxy_http_version 1.1;
proxy_set_header Host $host;
proxy_cache_valid 200 30d;
@ -416,7 +416,7 @@ server {
}
# IndeeHub WebSocket proxy
location /app/indeedhub/ws/ {
proxy_pass http://127.0.0.1:7777/ws/;
proxy_pass http://127.0.0.1:7778/ws/;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
@ -425,7 +425,7 @@ server {
proxy_read_timeout 86400s;
}
location /app/indeedhub/ {
proxy_pass http://127.0.0.1:7777/;
proxy_pass http://127.0.0.1:7778/;
proxy_http_version 1.1;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;

View File

@ -26,15 +26,12 @@ EOF
# Configure registries (use Docker Hub and quay.io)
mkdir -p /home/archipelago/.config/containers/registries.conf.d
cat > /home/archipelago/.config/containers/registries.conf.d/000-shortnames.conf <<EOF
[registries.search]
registries = ['git.tx1138.com', 'docker.io', 'quay.io', 'ghcr.io']
cat > /home/archipelago/.config/containers/registries.conf <<EOF
unqualified-search-registries = ["docker.io", "ghcr.io", "quay.io", "git.tx1138.com"]
[registries.insecure]
registries = ['git.tx1138.com']
[registries.block]
registries = []
[[registry]]
location = "git.tx1138.com"
insecure = true
EOF
# Set up subuid and subgid for rootless containers