Registry-Entscheidung evidenzbasiert: das Package ist pnpm-Dependency von ThreadNet-Webs apps/web, der Lockfile pinnt die Tarball-URL auf rohana - Registry bleibt dort. Publish-Auth ueber CI-Variable GITEA_NPM_TOKEN statt lokaler Klartext-.npmrc. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
17 lines
440 B
Plaintext
17 lines
440 B
Plaintext
server {
|
|
listen 8080;
|
|
server_name localhost;
|
|
|
|
location / {
|
|
proxy_pass http://jaeger-all-in-one:16686/;
|
|
add_header Access-Control-Allow-Origin *;
|
|
|
|
if ($request_method = OPTIONS) {
|
|
add_header Access-Control-Allow-Origin *;
|
|
add_header Content-Type text/plain;
|
|
add_header Content-Length 0;
|
|
return 204;
|
|
}
|
|
}
|
|
}
|