0

我已经verdaccio在 centos 服务器上进行了配置,并按照文档中的教程进行操作。我使用了一个 docker 容器,我的存储库树如下所示:

/root/verdacio/
         |_____ conf/
         |       |___config.yaml 
         |_____ logo
         |      |____mylogo.ico
         |      |____mylogo.png
         |_____ plugins
         |_____ storage

我的config.yaml文件如下所示:

storage: /root/verdaccio/storage
plugins: /root/verdaccio/plugins
web:
  enable: true
  title: "MyStartUp"
  logo: /root/verdaccio/logo/mylogo.png
  gravatar: true
  scope: "@mystartup"
  sort_packages: asc | desc
  darkmode: true
  favicon: /root/verdaccio/logo/mylogo.ico
auth:
  htpasswd:
    file: ./htpasswd
uplinks:
  npmjs:
    url: https://registry.npmjs.org/
packages:
  '@mystartup/':
    access: $authenticated
    publish: $authenticated
  '@*/*':
    access: $authenticated
    publish: $authenticated
    unpublish: $authenticated
    proxy: npmjs
  '**':
    access: $authenticated
    publish: $authenticated
    unpublish: $authenticated
    proxy: npmjs
middlewares:
  audit:
    enabled: true
max_body_size: 100mb
logs:
  - {type: stdout, format: pretty, level: http}

我的问题是:为什么我会在 中找到我的包(当我发布一个包时)/var/lib/docker/volumes/someID/_data/data?我很难找到它们。为什么徽标不起作用,我的 UI 中仍然有 verdaccio 的徽标,标题仍然是 verdaccio,即使我没有经过身份验证,当我进入 web ui 时,我仍然可以下载包(尚未通过测试终端) ?

由于 conf 文件的位置,我认为这可能是一个问题(因为我在一个 youtube 视频中看到那个人有类似的东西~/verdaccio/conf/verdaccio/config.yaml,我也做了同样的事情,重新启动 docker 容器,但我的问题仍然存在。

4

1 回答 1

0

我以一种肮脏的方式解决了我的问题,但它仍然有效。我去了我的 linux 服务器的根目录并输入find -type f -name "config.yaml",因此我找到了 verdaccio 正在使用的默认配置文件,我做了一些修改,一切都工作正常,除了我无法更改的徽标,因为根据我了解,我不能使用它的路径,而是使用 http 链接。

于 2021-10-27T13:29:47.250 回答