{"id":23708558,"url":"https://github.com/decryptus/certbot-httpreq","last_synced_at":"2026-02-05T02:30:15.003Z","repository":{"id":62561441,"uuid":"220837502","full_name":"decryptus/certbot-httpreq","owner":"decryptus","description":"Customize and send authenticator and installer certbot requests through HTTP protocol","archived":false,"fork":false,"pushed_at":"2022-10-09T22:06:36.000Z","size":40,"stargazers_count":0,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-01-30T19:40:53.258Z","etag":null,"topics":["certbot","certbot-plugin","customization","http-requests","json-api"],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/decryptus.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2019-11-10T19:13:38.000Z","updated_at":"2022-01-19T12:29:01.000Z","dependencies_parsed_at":"2022-11-03T15:15:28.901Z","dependency_job_id":null,"html_url":"https://github.com/decryptus/certbot-httpreq","commit_stats":null,"previous_names":[],"tags_count":9,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/decryptus%2Fcertbot-httpreq","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/decryptus%2Fcertbot-httpreq/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/decryptus%2Fcertbot-httpreq/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/decryptus%2Fcertbot-httpreq/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/decryptus","download_url":"https://codeload.github.com/decryptus/certbot-httpreq/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":239793056,"owners_count":19697893,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["certbot","certbot-plugin","customization","http-requests","json-api"],"created_at":"2024-12-30T18:01:05.857Z","updated_at":"2026-02-05T02:30:14.938Z","avatar_url":"https://github.com/decryptus.png","language":"Python","readme":"## certbot-httpreq project\n\n[![PyPI pyversions](https://img.shields.io/pypi/pyversions/certbot-httpreq.svg)](https://pypi.org/project/certbot-httpreq/)\n[![PyPI version shields.io](https://img.shields.io/pypi/v/certbot-httpreq.svg)](https://pypi.org/project/certbot-httpreq/)\n[![Documentation Status](https://readthedocs.org/projects/certbot-httpreq/badge/?version=latest)](https://certbot-httpreq.readthedocs.io/)\n\ncertbot-httpreq is a free and open-source, we develop it to customize and send authenticator and installer certbot requests through HTTP protocol.\n\n## Table of contents\n1. [Installation](#installation)\n2. [Usage](#usage)\n3. [Configuration](#configuration)\n\n## \u003ca name=\"installation\"\u003e\u003c/a\u003eInstallation\n\n`pip install certbot-httpreq`\n\n## \u003ca name=\"usage\"\u003e\u003c/a\u003eUsage\n\n```\ncertbot \\\n  --agree-tos \\\n  --text \\\n  -a certbot-httpreq:auth \\\n  -i certbot-httpreq:installer \\\n  --certbot-httpreq:auth-config /etc/letsencrypt/certbot-httpreq.yml \\ # not required\n  --certbot-httpreq:installer-config /etc/letsencrypt/certbot-httpreq.yml \\ # not required\n  run\n```\n\nConfiguration file must be placed in /etc/letsencrypt/certbot-httpreq.yml or be specified with arguments --certbot-httpreq:auth-config and --certbot-httpreq:installer-config.\n\n## \u003ca name=\"configuration\"\u003e\u003c/a\u003eConfiguration\n\nYou can customize authenticator HTTP requests for perform and cleanup phases and also installer HTTP requests for deploy phase.\n\n```\n# authenticator\nperform:\n  ### perform HTTP URI ###\n  uri: http://localhost\n  ### perform HTTP path ###\n  path: /\n  ### perform HTTP method: PUT or POST ###\n  method: PUT\n  ### perform HTTP format: json or form-urlencoded ###\n  format: json\n  ### parameter name in HTTP query string for challenge string ###\n  ### default: HTTP path e.g.: http://localhost/HGr8U1IeTW4kY_Z6UIyaakzOkyQgPr_7ArlLgtZE8SX ###\n  param_challenge: ~\n  ### parameter name in HTTP body for validation string\n  ### default: HTTP json payload e.g.: \"gfj9Xq...Rg85nM\" ###\n  param_validation: ~\n  ### perform HTTP custom headers ###\n  headers: {}\n  ### perform HTTP connection timeout ###\n  timeout: ~\n  ### perform HTTP SSL verify ###\n  verify: ~\ncleanup:\n  ### cleanup HTTP uri ###\n  uri: http://localhost\n  ### cleanup HTTP path ###\n  path: /\n  ### cleanup HTTP method: DELETE, PUT or POST ###\n  method: DELETE\n  ### cleanup HTTP format: json or form-urlencoded ###\n  format: json\n  ### parameter name in HTTP query string for challenge string ###\n  ### default: HTTP path e.g.: http://localhost/HGr8U1IeTW4kY_Z6UIyaakzOkyQgPr_7ArlLgtZE8SX ###\n  param_challenge: ~\n  ### cleanup HTTP custom headers ###\n  headers: {}\n  ### cleanup HTTP connection timeout ###\n  timeout: ~\n  ### cleanup HTTP SSL verify ###\n  verify: ~\n\n# installer\ndeploy:\n  ### deploy HTTP URI ###\n  uri: http://localhost\n  ### deploy HTTP path ###\n  path: /\n  ### deploy HTTP method: POST or PUT or PATCH ###\n  method: POST\n  ### deploy HTTP format: json or form-urlencoded ###\n  ### e.g.: HTTP json payload: {\"domain\":\"...\",\"cert\":\"...\",\"key\":\"...\",\"chain\":\"...\"} ###\n  format: json\n  ### parameter names in HTTP body\n  body_params:\n    domain: domain\n    cert: cert\n    key: key\n    chain: chain\n  ### deploy HTTP custom headers ###\n  headers: {}\n  ### deploy HTTP connection timeout ###\n  timeout: ~\n  ### deploy HTTP SSL verify ###\n  verify: ~\n```\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdecryptus%2Fcertbot-httpreq","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdecryptus%2Fcertbot-httpreq","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdecryptus%2Fcertbot-httpreq/lists"}