0.0.5 • Published 4 years ago

@server-status/api-plugin-caddy v0.0.5

Weekly downloads
-
License
MIT
Repository
gitlab
Last release
4 years ago

Caddy Server plugin for Server Status API

GraphQL API for retrieving information about running virtual host via Caddy Server.

Use

It is plugin so you need use the @server-status/api or you can adapt to yours ApolloServer. But if you choose my solution you need to do this steps:

$ npm install @server-status/api @server-status/api-plugin-caddy

or

$ yarn add @server-status/api @server-status/api-plugin-caddy

Create file e.g. index.js

const ServerStatus = require('@server-status/api')

const config = {
  plugins: [
    {
      name: '@server-status/api-plugin-caddy',
      // config: {
      //   user: 'username',
      //   pass: 'password',
      //   port: 2019,
      // }
    },
  ],
}

ServerStatus(config).listen()

And run server

$ node index.js

Licence

MIT