# Puma based HTTP(S) plugin for Fluentd HTTP input plugin based on [Puma](http://puma.io/) This HTTP input plugin supports HTTPS mode. ## Installation Use RubyGems: fluent-gem install fluent-plugin-http-puma ## Configuration type http_puma # optional parameters(same as in_http) bind 127.0.0.1 port 9890 backlog 2048 format json # optional Puma parameters min_threads 0 max_threads 4 use_ssl ssl_keys /path/to/key,/path/to/cert ### HTTPS mode Use `use_ssl` and `ssl_keys`. use_ssl ssl_keys ["/path/to/key", "/path/to/cert"] # ssl_keys is required when use_ssl is true `ssl_keys` are json array which has two elements, 1st is for key file, 2nd is for cert file.