RedbirdプロキシサーバーでSSL証明書を更新する方法

RedbirdプロキシサーバーでSSL証明書を更新する方法

私のアプリケーションを提供するためにRedbirdプロキシサーバーを使用してください。私の証明書は今日期限切れです。どのように更新できますか?私はこれで試しましたガイドラインしかし、ngnixサーバーでのみ機能しているようです。

私のものserver.js

const proxy = require('redbird')({
  port: 80,
  xfwd: false,
  letsencrypt: {
    path: "certs",
    port: 4444
  },
  ssl: {
    port: 443
  }
});

proxy.register("domain.com", "http://localhost:3000", {
    ssl: {
      letsencrypt: {
        email: "[email protected]",
        production: true
      }
    }
});

proxy.register("www.domain.com", "http://localhost:3000", {
    ssl: {
      letsencrypt: {
        email: "email.com",
        production: true
      }
    }
});

フォルダ構造:

drwxr-xr-x   8 root    root     4096 Mar 27 22:23 certs 
drwxrwxr-x 157 redbird redbird  4096 Mar 27 21:33 node_modules
-rw-rw-r--   1 redbird redbird   142 Mar 27 21:33 package.json
-rw-rw-r--   1 redbird redbird   887 Aug 23 22:40 server.js
-rw-rw-r--   1 redbird redbird 48105 Mar 27 21:33 yarn.lock

ベストアンサー1

certsフォルダを削除し、redbirdが有効な証明書をcerts使用して新しいフォルダを作成しました。

おすすめ記事