{"id":15798132,"url":"https://github.com/grokify/fastly-logging-proxy","last_synced_at":"2026-01-12T01:02:58.274Z","repository":{"id":38789813,"uuid":"506677043","full_name":"grokify/fastly-logging-proxy","owner":"grokify","description":"Fastly Logging Proxy to remove need for Challenge/Response on end server, for example to use with testing with services like RequestBin and Zapier.","archived":false,"fork":false,"pushed_at":"2025-11-21T02:03:42.000Z","size":30,"stargazers_count":0,"open_issues_count":3,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-01-12T00:28:20.400Z","etag":null,"topics":["compute-at-edge","fastly","logging","proxy"],"latest_commit_sha":null,"homepage":"","language":"Go","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/grokify.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2022-06-23T14:38:12.000Z","updated_at":"2024-09-29T09:20:13.000Z","dependencies_parsed_at":"2023-12-10T11:26:04.944Z","dependency_job_id":"f4f14559-f590-493b-9155-97ddf1e4ab43","html_url":"https://github.com/grokify/fastly-logging-proxy","commit_stats":{"total_commits":44,"total_committers":2,"mean_commits":22.0,"dds":"0.11363636363636365","last_synced_commit":"989f75ddae69f810672062c47bd786fbc253dc5a"},"previous_names":["grokify/fastly-compute-logging-http-proxy","grokify/fastly-compute-logger-http-proxy"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/grokify/fastly-logging-proxy","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/grokify%2Ffastly-logging-proxy","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/grokify%2Ffastly-logging-proxy/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/grokify%2Ffastly-logging-proxy/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/grokify%2Ffastly-logging-proxy/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/grokify","download_url":"https://codeload.github.com/grokify/fastly-logging-proxy/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/grokify%2Ffastly-logging-proxy/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28330166,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-12T00:36:25.062Z","status":"ssl_error","status_checked_at":"2026-01-12T00:36:15.229Z","response_time":60,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":["compute-at-edge","fastly","logging","proxy"],"created_at":"2024-10-05T00:23:46.381Z","updated_at":"2026-01-12T01:02:58.257Z","avatar_url":"https://github.com/grokify.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Fastly Log Streaming HTTPS Proxy\n\nThis proxy enables using [Fastly's HTTPS log streaming](https://docs.fastly.com/en/guides/log-streaming-https) with [Compute@Edge support](https://docs.fastly.com/en/guides/compute-log-streaming-https) to services that cannot implement Fastly's challenge/response protocolo, like [RequestBin](https://requestbin.com/), [Zapier](https://zapier.com/) and others.\n\nThis small server supports the Fastly HTTPS logging challenge at `/.well-known/fastly/logging/challenge` and proxes to the server URL at the environment variable `PROXY_URL` without a challenge-response.\n\nNote: It is configured to be deployed to Heroku's free tier for testing purposes. This can be adjusted by forking this repo and editing the [`app.json`](app.json) file.\n\nSee more here:\n\n* [Log streaming: HTTPS](https://docs.fastly.com/en/guides/log-streaming-https)\n* [Compute@Edge log streaming: HTTPS](https://docs.fastly.com/en/guides/compute-log-streaming-https)\n\n# To Do\n\n- [x] Proxy server-side logging from HTTPS log streaming\n- [x] Heroku one button deployment (default to free tier)\n- [x] Papertrail logging on Heroku (defaulls to free tier). Currently covers proxy service only\n- [ ] Proxy Fastly server-side logging directly to [Papertrail](https://www.papertrail.com/)\n- [ ] Fastly CLI Tail Logging support by implementing subscription service\n\n## Installation\n\n### Heroku\n\n[![Deploy](https://www.herokucdn.com/deploy/button.svg)](https://heroku.com/deploy)\n\nDuring the installation process, set the following environment variables.\n\n| Variable | Type | Required | Notes |\n|----------|------|----------|-------|\n| `PORT`         | integer | n | auto-populated by Heroku |\n| `FASTLY_SERVICE_IDS` | string | n | a comma-delimited list of Service IDs. To support any Service ID, leave empty or explicitly set to `*`. Do not run the SHA256 checksum yourself, as the proxy service will automaticaly hash the Service IDs in the `FASTLY_SERVICE_IDS` environment variable. |\n| `PROXY_URL` | string | y | the URL where the incoming body should be posted to. Only HTTP `POST` method is supported for now. |\n\nOnce this is set up, set your Heroku URL to be your Fastly logging endpoint, for example:\n\n`https://{my-log-proxy}.herokuapp.com`\n\nThe challenge response will be automatically provided at:\n\n`https://{my-log-proxy}.herokuapp.com/.well-known/fastly/logging/challenge`\n\n### Running locally\n\nIf you want to run this service locally, you can do this by running it behind a ngrok reverse proxy.\n\n### Other\n\nFor other deployment modes, this is a simple zero-dependency `net/http` server and should be easy to deploy.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgrokify%2Ffastly-logging-proxy","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgrokify%2Ffastly-logging-proxy","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgrokify%2Ffastly-logging-proxy/lists"}