-
This works at my side. Can you please create a test project running the npm publish step demonstrating the issue?
-
I am sorry. After some investigation I figured out, that nginx was manipulation the request path, therefore leading to the seen error
According to this post I had to remove the trailing slash, after that it was working
https://docs.onedev.io/administration-guide/reverse-proxy-setup
location / { proxy_pass http://localhost:6610/; }=>
location / { proxy_pass http://localhost:6610; } -
Previous Value Current Value Open
Closed
-
Thanks for the investigation. Doc has been updated to reflect this.
| Type |
Question
|
| Priority |
Normal
|
| Assignee | |
| Labels |
No labels
|
Issue Votes (0)
when trying to publish my npm scoped package, a 400 is returned
with an unscoped package it works without problems
if I adjust the name of the package to be scoped within the database in order to be fetchable, the same problem occurs
any advice would be appreciated