{"id":16540827,"url":"https://github.com/richarvey/caddy-aws-ready","last_synced_at":"2025-03-04T04:26:29.884Z","repository":{"id":63861591,"uuid":"457947738","full_name":"richarvey/caddy-aws-ready","owner":"richarvey","description":"Caddy Server with AWS modules","archived":false,"fork":false,"pushed_at":"2022-02-23T22:30:18.000Z","size":11,"stargazers_count":1,"open_issues_count":0,"forks_count":1,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-01-14T08:51:52.411Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Dockerfile","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/richarvey.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2022-02-10T21:07:25.000Z","updated_at":"2022-10-09T02:15:14.000Z","dependencies_parsed_at":"2022-11-27T21:02:11.407Z","dependency_job_id":null,"html_url":"https://github.com/richarvey/caddy-aws-ready","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/richarvey%2Fcaddy-aws-ready","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/richarvey%2Fcaddy-aws-ready/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/richarvey%2Fcaddy-aws-ready/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/richarvey%2Fcaddy-aws-ready/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/richarvey","download_url":"https://codeload.github.com/richarvey/caddy-aws-ready/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":241783172,"owners_count":20019507,"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":[],"created_at":"2024-10-11T18:53:24.550Z","updated_at":"2025-03-04T04:26:29.121Z","avatar_url":"https://github.com/richarvey.png","language":"Dockerfile","funding_links":[],"categories":[],"sub_categories":[],"readme":"# caddy-aws-ready\n\nAWS ready caddy server image impliments, extra optional modules to interact with dynamoDB or S3 for certmagic storage and allow caddy to be a reverse proxy for S3 which brings extra features to static hosting.\n\n### caddy.storage.dynamodb\n[https://github.com/silinternational/certmagic-storage-dynamodb](https://github.com/silinternational/certmagic-storage-dynamodb)\n\ncaddy.storage.dynamodb implements certmagic.Storage to facilitate storage of certificates in DynamoDB for a clustered environment. Also implements certmagic.Locker to facilitate locking and unlocking of cert data during storage\n\nThis image is preconfigured to work with a dynamoDB table called __CertMagic__ you can terrafom the table with the following:\n\n```terraform\nresource \"aws_dynamodb_table\" \"CertMagic\" {\n  name           = \"CertMagic\"\n  billing_mode   = \"PAY_PER_REQUEST\"\n  hash_key       = \"PrimaryKey\"\n\n  attribute {\n    name = \"PrimaryKey\"\n    type = \"S\"\n  }\n}\n```\n\n```json\n{\n\t\"table\": \"\",\n\t\"aws_endpoint\": \"\",\n\t\"aws_region\": \"\",\n\t\"aws_disable_ssl\": false,\n\t\"lock_timeout\": 0,\n\t\"lock_polling_interval\": 0\n}\n```\n#### Field List\n\n__table__\n- There are no docs for this property.\n\n__aws_endpoint__\n- There are no docs for this property.\n\n__aws_region__\n- There are no docs for this property.\n\n__aws_disable_ssl__\n- There are no docs for this property.\n\n__lock_timeout__\n- Duration can be an integer or a string. An integer is interpreted as nanoseconds. If a string, it is a Go time.Duration value such as 300ms, 1.5h, or 2h45m; valid units are ns, us/µs, ms, s, m, h, and d.\n\n__lock_polling_interval__\n- Duration can be an integer or a string. An integer is interpreted as nanoseconds. If a string, it is a Go time.Duration value such as 300ms, 1.5h, or 2h45m; valid units are ns, us/µs, ms, s, m, h, and d.\n\n\n### http.handlers.s3proxy \n[https://github.com/lindenlab/caddy-s3-proxy](https://github.com/lindenlab/caddy-s3-proxy)\n\nhttp.handlers.s3proxy implements a proxy to return, set, delete or browse objects from S3\n\n```json\n{\n\t\"root\": \"\",\n\t\"region\": \"\",\n\t\"bucket\": \"\",\n\t\"endpoint\": \"\",\n\t\"index_names\": [\"\"],\n\t\"error_pages\": {\n\t\t0: \"\"\n\t},\n\t\"default_error_page\": \"\",\n\t\"force_path_style\": false,\n\t\"use_accelerate\": false\n}\n```\n\n#### Field List\n\n__root__\n- The path to the root of the site. Default is {http.vars.root} if set, Or if not set the value is \"\" - meaning use the whole path as a key.\n\n__region__\n- The AWS region the bucket is hosted in\n\n__bucket__\n- The name of the S3 bucket\n\n__endpoint__\n- Use non-standard endpoint for S3\n\n__index_names__\n- The names of files to try as index files if a folder is requested.\n\n__error_pages__\n- Mapping of HTTP error status to S3 keys or pass through option.\n\n__default_error_page__\n- S3 key to a default error page or pass through option.\n\n__force_path_style__\n- Set this to true to force the request to use path-style addressing.\n\n__use_accelerate__\n- Set this to true to enable S3 Accelerate feature.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fricharvey%2Fcaddy-aws-ready","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fricharvey%2Fcaddy-aws-ready","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fricharvey%2Fcaddy-aws-ready/lists"}