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" => ( "indeedhub" => (
vec!["8190:3000".to_string()], vec!["7778:7777".to_string()],
vec![], vec![],
vec![ vec![
"NODE_ENV=production".to_string(), "NODE_ENV=production".to_string(),

View File

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

View File

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