{"id":19473326,"url":"https://github.com/ethercreative/docker-remote-proxy","last_synced_at":"2026-02-18T10:03:40.566Z","repository":{"id":90069242,"uuid":"362777192","full_name":"ethercreative/docker-remote-proxy","owner":"ethercreative","description":"Quick and easy docker nginx proxy with wildcard SSL using Traefik","archived":false,"fork":false,"pushed_at":"2024-08-08T14:32:10.000Z","size":11,"stargazers_count":1,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-12-09T23:53:19.079Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Shell","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/ethercreative.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}},"created_at":"2021-04-29T10:23:31.000Z","updated_at":"2024-08-08T14:32:13.000Z","dependencies_parsed_at":"2024-08-08T17:00:06.299Z","dependency_job_id":null,"html_url":"https://github.com/ethercreative/docker-remote-proxy","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ethercreative/docker-remote-proxy","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ethercreative%2Fdocker-remote-proxy","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ethercreative%2Fdocker-remote-proxy/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ethercreative%2Fdocker-remote-proxy/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ethercreative%2Fdocker-remote-proxy/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ethercreative","download_url":"https://codeload.github.com/ethercreative/docker-remote-proxy/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ethercreative%2Fdocker-remote-proxy/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29575343,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-18T08:38:15.585Z","status":"ssl_error","status_checked_at":"2026-02-18T08:38:14.917Z","response_time":162,"last_error":"SSL_read: 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":[],"created_at":"2024-11-10T19:18:09.208Z","updated_at":"2026-02-18T10:03:40.548Z","avatar_url":"https://github.com/ethercreative.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Docker Remote Proxy\nQuick and easy docker nginx proxy with wildcard SSL using [Traefik](https://doc.traefik.io/traefik/)\n\n## Install\n\nRun the following command on your server:\n\n```shell\nsh -c \"$(curl -sSL https://raw.githubusercontent.com/ethercreative/docker-remote-proxy/master/install.sh)\"\n```\n\n## Site Setup\n\nEach site should have the following values set in the `.env` file:\n\n```\nCOMPOSE_PROJECT_NAME=my-project\nVIRTUAL_HOST=my-domain.com\n```\n\n**NOTE:** Your `COMPOSE_PROJECT_NAME` should be different to the server name\n\n## Single Domain\n\nIn your `docker-compose.yml` file, add the following network \u0026 labels to your `web` container:\n\n```yaml\nservices:\n  web:\n    networks:\n      - proxy\n      - default\n    labels:\n      - traefik.enable=true\n      - traefik.http.routers.$COMPOSE_PROJECT_NAME.rule=Host(`$VIRTUAL_HOST`)\n      - traefik.http.routers.$COMPOSE_PROJECT_NAME.tls=true\n      - traefik.http.routers.$COMPOSE_PROJECT_NAME.tls.certresolver=main\nnetworks:\n  proxy:\n    external: true\n```\n\n## Wildcard Domain\n\n**Generate a DigitalOcean access token and add it to the `.env` file in the `proxy` directory.**\n\nUncomment the following in the `traefik.yml` file:\n```yml\n#      dnsChallenge:\n#        provider: digitalocean\n#        delayBeforeCheck: 0\n```\n\nSet your `VIRTUAL_HOST` environment variable to the wildcard domain, i.e. `VIRTUAL_HOST=*.my-domain.com` \n\nAdd the following to your `docker-compose.yml`:\n\n```yaml\nservices:\n  web:\n    networks:\n      - proxy\n      - default\n    labels:\n      - traefik.enable=true\n      - traefik.http.routers.$COMPOSE_PROJECT_NAME.rule=PathPrefix(`/`)\n      - traefik.http.routers.$COMPOSE_PROJECT_NAME.tls=true\n      - traefik.http.routers.$COMPOSE_PROJECT_NAME.tls.certresolver=main\n      - traefik.http.routers.$COMPOSE_PROJECT_NAME.tls.domains[0].main=$VIRTUAL_HOST\nnetworks:\n  proxy:\n    external: true\n```\n\n## WWW support\n\nIn your `docker-compose.yml` file, add/modify the following labels to/in your `web` container:\n\n```yaml\nservices:\n  web:\n    labels:\n      # - ... other labels excluded for brevity ...\n      - traefik.http.routers.$COMPOSE_PROJECT_NAME.rule=Host(`www.$VIRTUAL_HOST`) || Host(`$VIRTUAL_HOST`)\n      - traefik.http.routers.$COMPOSE_PROJECT_NAME.middlewares=redirect-www-to-non-www@file,redirect-web-to-websecure@internal\n```\nThis will redirect www to non-www.\n\nReplace `redirect-www-to-non-www` with `redirect-non-www-to-www` to redirect from non-www to www.\n\n## Development\n\nIf you want to enable the Traefik dashboard while developing, you can do so by \nsetting the `api.insecure` value in `treafik.yml` to `true`. You'll then be able\nto access the dashboard by going to `[server-ip]:8080` or `my-domain.com:8080`.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fethercreative%2Fdocker-remote-proxy","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fethercreative%2Fdocker-remote-proxy","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fethercreative%2Fdocker-remote-proxy/lists"}