Last active
February 3, 2025 14:43
-
-
Save mpalourdio/1bd8e4af1a893b85168889a76858e0f1 to your computer and use it in GitHub Desktop.
From sonatype nexus to npmjs audit
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
server { | |
listen 8080; | |
server_name localhost; | |
location ~ ^/repository/npm-group/-/npm/(.*)$ { | |
return 307 https://registry.npmjs.org/-/npm/$1; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment