2026-02-22 21:45:53 +00:00
|
|
|
worker_processes auto;
|
|
|
|
|
error_log /var/log/nginx/error.log warn;
|
|
|
|
|
pid /tmp/nginx.pid;
|
|
|
|
|
|
|
|
|
|
events {
|
|
|
|
|
worker_connections 1024;
|
2025-12-29 20:16:13 +00:00
|
|
|
}
|
|
|
|
|
|
2026-02-22 21:45:53 +00:00
|
|
|
http {
|
|
|
|
|
proxy_cache_path /var/cache/nginx/registry
|
|
|
|
|
levels=1:2
|
|
|
|
|
keys_zone=registry:500m
|
|
|
|
|
max_size=50g
|
|
|
|
|
inactive=24h
|
|
|
|
|
use_temp_path=off;
|
|
|
|
|
|
|
|
|
|
log_format registry '$remote_addr [$time_local] "$request" '
|
|
|
|
|
'$status $body_bytes_sent '
|
|
|
|
|
'upstream=$upstream_addr time=$upstream_response_time '
|
|
|
|
|
'cache=$upstream_cache_status';
|
|
|
|
|
|
|
|
|
|
access_log /var/log/nginx/access.log registry;
|
|
|
|
|
|
|
|
|
|
# --- Upstreams ---
|
|
|
|
|
|
|
|
|
|
upstream dockerhub {
|
|
|
|
|
server registry-dockerhub:5000;
|
|
|
|
|
keepalive 32;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
upstream ghcr {
|
|
|
|
|
server registry-ghcr:5000;
|
|
|
|
|
keepalive 32;
|
|
|
|
|
}
|
|
|
|
|
|
2026-05-07 19:08:17 +00:00
|
|
|
# `upstream private` removed in Phase 4 of forgejo-registry-consolidation
|
|
|
|
|
# 2026-05-07. The /v2/ private registry is now Forgejo at
|
|
|
|
|
# forgejo.viktorbarzin.me/viktor/.
|
2026-02-28 17:57:03 +00:00
|
|
|
|
2026-02-22 21:45:53 +00:00
|
|
|
# --- Docker Hub (port 5000) ---
|
|
|
|
|
|
|
|
|
|
server {
|
|
|
|
|
listen 5000;
|
|
|
|
|
server_name _;
|
|
|
|
|
|
|
|
|
|
client_max_body_size 0;
|
|
|
|
|
proxy_request_buffering off;
|
|
|
|
|
proxy_buffering on;
|
|
|
|
|
|
2026-03-14 22:43:20 +00:00
|
|
|
# Blobs are content-addressed (sha256) — immutable, safe to cache aggressively
|
|
|
|
|
location ~ /v2/.*/blobs/ {
|
2026-02-22 21:45:53 +00:00
|
|
|
proxy_pass http://dockerhub;
|
|
|
|
|
proxy_http_version 1.1;
|
|
|
|
|
proxy_set_header Host $host;
|
|
|
|
|
proxy_set_header Connection "";
|
|
|
|
|
|
2026-03-23 11:33:06 +02:00
|
|
|
# Reject truncated upstream responses
|
|
|
|
|
proxy_intercept_errors on;
|
|
|
|
|
error_page 502 503 504 = @upstream_error;
|
|
|
|
|
|
2026-02-22 21:45:53 +00:00
|
|
|
proxy_cache registry;
|
|
|
|
|
proxy_cache_lock on;
|
2026-03-23 11:33:06 +02:00
|
|
|
proxy_cache_lock_timeout 5m;
|
|
|
|
|
proxy_cache_lock_age 5m;
|
2026-02-22 21:45:53 +00:00
|
|
|
proxy_cache_use_stale updating;
|
2026-03-16 07:41:11 +00:00
|
|
|
proxy_cache_valid 200 24h;
|
2026-03-23 11:33:06 +02:00
|
|
|
proxy_cache_valid any 0;
|
2026-03-16 07:41:11 +00:00
|
|
|
proxy_cache_min_uses 2;
|
2026-02-22 21:45:53 +00:00
|
|
|
proxy_cache_methods GET;
|
|
|
|
|
|
|
|
|
|
proxy_read_timeout 900;
|
|
|
|
|
proxy_send_timeout 900;
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-14 22:43:20 +00:00
|
|
|
# Manifests are mutable (tags can change) — no cache, pass through to registry
|
2026-02-22 21:45:53 +00:00
|
|
|
location /v2/ {
|
2026-03-14 22:43:20 +00:00
|
|
|
proxy_pass http://dockerhub;
|
2026-02-22 21:45:53 +00:00
|
|
|
proxy_http_version 1.1;
|
|
|
|
|
proxy_set_header Host $host;
|
|
|
|
|
proxy_set_header Connection "";
|
2025-12-29 20:16:13 +00:00
|
|
|
|
2026-03-14 22:43:20 +00:00
|
|
|
proxy_cache off;
|
2025-12-29 20:16:13 +00:00
|
|
|
|
2026-02-22 21:45:53 +00:00
|
|
|
proxy_read_timeout 900;
|
|
|
|
|
proxy_send_timeout 900;
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-23 11:33:06 +02:00
|
|
|
location @upstream_error {
|
|
|
|
|
return 502 "upstream error";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
location /healthz {
|
|
|
|
|
proxy_pass http://dockerhub/v2/;
|
|
|
|
|
proxy_read_timeout 5s;
|
|
|
|
|
proxy_connect_timeout 3s;
|
|
|
|
|
access_log off;
|
|
|
|
|
}
|
|
|
|
|
|
2026-02-22 21:45:53 +00:00
|
|
|
location / {
|
|
|
|
|
return 200 'ok';
|
|
|
|
|
add_header Content-Type text/plain;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-14 22:43:20 +00:00
|
|
|
# --- GHCR (port 5010) ---
|
2026-02-22 21:45:53 +00:00
|
|
|
|
|
|
|
|
server {
|
2026-03-14 22:43:20 +00:00
|
|
|
listen 5010;
|
2026-02-22 21:45:53 +00:00
|
|
|
server_name _;
|
|
|
|
|
|
|
|
|
|
client_max_body_size 0;
|
|
|
|
|
proxy_request_buffering off;
|
|
|
|
|
proxy_buffering on;
|
|
|
|
|
|
2026-03-14 22:43:20 +00:00
|
|
|
# Blobs are content-addressed (sha256) — immutable, safe to cache aggressively
|
|
|
|
|
location ~ /v2/.*/blobs/ {
|
|
|
|
|
proxy_pass http://ghcr;
|
2026-02-22 21:45:53 +00:00
|
|
|
proxy_http_version 1.1;
|
|
|
|
|
proxy_set_header Host $host;
|
|
|
|
|
proxy_set_header Connection "";
|
|
|
|
|
|
2026-03-23 11:33:06 +02:00
|
|
|
# Reject truncated upstream responses
|
|
|
|
|
proxy_intercept_errors on;
|
|
|
|
|
error_page 502 503 504 = @upstream_error;
|
|
|
|
|
|
2026-02-22 21:45:53 +00:00
|
|
|
proxy_cache registry;
|
|
|
|
|
proxy_cache_lock on;
|
2026-03-23 11:33:06 +02:00
|
|
|
proxy_cache_lock_timeout 5m;
|
|
|
|
|
proxy_cache_lock_age 5m;
|
2026-02-22 21:45:53 +00:00
|
|
|
proxy_cache_use_stale updating;
|
2026-03-16 07:41:11 +00:00
|
|
|
proxy_cache_valid 200 24h;
|
2026-03-23 11:33:06 +02:00
|
|
|
proxy_cache_valid any 0;
|
2026-03-16 07:41:11 +00:00
|
|
|
proxy_cache_min_uses 2;
|
2026-02-22 21:45:53 +00:00
|
|
|
proxy_cache_methods GET;
|
|
|
|
|
|
|
|
|
|
proxy_read_timeout 900;
|
|
|
|
|
proxy_send_timeout 900;
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-14 22:43:20 +00:00
|
|
|
# Manifests are mutable (tags can change) — no cache, pass through to registry
|
2026-02-22 21:45:53 +00:00
|
|
|
location /v2/ {
|
2026-03-14 22:43:20 +00:00
|
|
|
proxy_pass http://ghcr;
|
2026-02-22 21:45:53 +00:00
|
|
|
proxy_http_version 1.1;
|
|
|
|
|
proxy_set_header Host $host;
|
|
|
|
|
proxy_set_header Connection "";
|
2025-12-29 20:16:13 +00:00
|
|
|
|
2026-03-14 22:43:20 +00:00
|
|
|
proxy_cache off;
|
2025-12-29 20:16:13 +00:00
|
|
|
|
2026-02-22 21:45:53 +00:00
|
|
|
proxy_read_timeout 900;
|
|
|
|
|
proxy_send_timeout 900;
|
|
|
|
|
}
|
2025-12-29 20:16:13 +00:00
|
|
|
|
2026-03-23 11:33:06 +02:00
|
|
|
location @upstream_error {
|
|
|
|
|
return 502 "upstream error";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
location /healthz {
|
|
|
|
|
proxy_pass http://ghcr/v2/;
|
|
|
|
|
proxy_read_timeout 5s;
|
|
|
|
|
proxy_connect_timeout 3s;
|
|
|
|
|
access_log off;
|
|
|
|
|
}
|
|
|
|
|
|
2026-02-22 21:45:53 +00:00
|
|
|
location / {
|
|
|
|
|
return 200 'ok';
|
|
|
|
|
add_header Content-Type text/plain;
|
|
|
|
|
}
|
2025-12-29 20:16:13 +00:00
|
|
|
}
|
2026-02-28 17:57:03 +00:00
|
|
|
|
2026-05-07 19:08:17 +00:00
|
|
|
# --- Private R/W Registry (port 5050) decommissioned Phase 4 2026-05-07 ---
|
|
|
|
|
# The TLS port 5050 server block previously fronted `registry-private`.
|
|
|
|
|
# Migrated to Forgejo at forgejo.viktorbarzin.me/viktor/. Both
|
|
|
|
|
# docker-compose.yml and this nginx config no longer reference port 5050.
|
2025-12-29 20:16:13 +00:00
|
|
|
}
|