Open IfrKonv opened 1 day ago
Update
I have simply added a rule in Nginx that rewrites /v2/
to the base path, and everything is working fine.
location / {
proxy_pass http://192.168.x.y:8080/;
}
location /v2/ {
proxy_pass http://192.168.x.y:8080/;
}
At this moment, I don’t know if everything works perfectly, but my question is: how is this procedure documented?
I hope this can help someone.
Hello, I've installed ChartMuseum version 0.16.2 via Docker, with these configurations:
I've exposed the service via HTTP with Nginx, and when I try to add the repo to Helm, I get:
the logs:
Could someone tell me what I'm doing wrong? I really can't figure out where the error is, it seems all correct. I've also tried a direct curl and it works:
I've also tried to install the
cm-push
plugin, but obviously it asks me to log in first. I thank in advance anyone who can provide some information to help me. Regards