{"id":20838415,"url":"https://github.com/reload/drupal-apache-fpm","last_synced_at":"2026-04-24T17:01:59.263Z","repository":{"id":38299057,"uuid":"59146951","full_name":"reload/drupal-apache-fpm","owner":"reload","description":"Apache 2.4 container that uses fpm to handle php-requests","archived":false,"fork":false,"pushed_at":"2025-05-14T10:48:51.000Z","size":80,"stargazers_count":0,"open_issues_count":0,"forks_count":1,"subscribers_count":4,"default_branch":"main","last_synced_at":"2025-05-14T11:51:20.624Z","etag":null,"topics":["docker"],"latest_commit_sha":null,"homepage":"https://ghcr.io/reload/drupal-apache-fpm","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/reload.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":"2016-05-18T19:58:17.000Z","updated_at":"2025-05-14T10:48:55.000Z","dependencies_parsed_at":"2024-06-18T05:26:39.913Z","dependency_job_id":"bf747ea7-8fb9-4805-9275-7110c6000703","html_url":"https://github.com/reload/drupal-apache-fpm","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/reload/drupal-apache-fpm","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/reload%2Fdrupal-apache-fpm","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/reload%2Fdrupal-apache-fpm/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/reload%2Fdrupal-apache-fpm/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/reload%2Fdrupal-apache-fpm/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/reload","download_url":"https://codeload.github.com/reload/drupal-apache-fpm/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/reload%2Fdrupal-apache-fpm/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32232622,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-24T13:21:15.438Z","status":"ssl_error","status_checked_at":"2026-04-24T13:21:15.005Z","response_time":64,"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":["docker"],"created_at":"2024-11-18T01:10:13.039Z","updated_at":"2026-04-24T17:01:59.229Z","avatar_url":"https://github.com/reload.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Apache FPM container based on phusion\nSimple apache-vhost that serves content from /var/www/web - php-requests are\nproxied to a linked fpm-container named \"fpm\" on port 9000.\n\n\n# Dory\n\nUse the following if you use [dory](https://github.com/FreedomBen/dory) (much of the same applies for  [nginx-proxy](https://github.com/jwilder/nginx-proxy) and [dinghy-http-proxy](https://github.com/codekitchen/dinghy-http-proxy) which Dory is based on).\n\n```yaml\n    environment:\n      VIRTUAL_HOST: example.docker\n      VIRTUAL_PORT: 80\n      # Use the following if you want to handle redirects from http to https yourself.\n      HTTPS_METHOD: noredirect\n\n```\n\n## Using autogenerated certificates\nThis require Dory version 1.0.3, use `dory upgrade` to upgrade\n\nIf you don't already have a Dory configuration-file, have it generate one by running `dory config` then update the update `ssl_certs_dir` configuration:\n\n```yaml\n  nginx_proxy:\n    enabled: true\n    container_name: dory_dinghy_http_proxy\n    https_enabled: true\n    # Update the follow line to point at the dev_certificates\n    ssl_certs_dir: \u003cyour homedir\u003e/.local/share/dev_certificates\n    image: codekitchen/dinghy-http-proxy:latest\n```\n\nThen mount that directory into the apache-fpm container so that its auto-generated certificates will be accessible to Dory.\n\n```yaml\n    volumes:\n      - '${HOME}/.local/share/dev_certificates:/cert:rw'\n```\n\nThen follow the steps in the mkcert sections to specify which certificates to generate and have your OS trust them.\n\n# mkcert\n\nThis image has [mkcert](https://github.com/FiloSottile/mkcert)\nbuiltin.\n\nInstall `mkcert` on your host machine and generate and install a root\ncertificate by running `mkcert -install` on your host machine (one time only).\n\nMac users should then do (one time only):\n```console\n$ mkdir -p ~/.local/share \u0026\u0026 ln -s \"$(mkcert -CAROOT)\"  ~/.local/share\n```\n\nThen you add the generated CAROOT as a volume (the path on the host\nmachine is the output of `mkcert -CAROOT`).\n\nIn your `docker-compose.yml` supply one or more host names to be be\nused for HTTPS. Host names will be search for in these location and in\nthis order:\n\n1. environment variable `MKCERT_DOMAINS` (several hostnames separated\n   by space is possible, you can even supply a wildcard domain),\n1. the environment variable `VIRTUAL_HOST` (as used by [Dinghy HTTP\n   Proxy](https://github.com/codekitchen/dinghy-http-proxy)), or\n1. the output of `hostname -f` in the container (which can be set with\n   the `hostname` and `domainname` options).\n\nMkcert will always add the IPs of the container to the certificate, so\n`curl`'ing HTTPS on the IP should always work.\n\n```yaml\n    volumes:\n      - '${HOME}/.local/share/mkcert:/mkcert:ro'\n\n    environment:\n      MKCERT_DOMAINS: \"example.docker *.example.docker local.docker\"\n\n    hostname: example\n    domainname: docker\n```\n\n# Full example configuration\n\n```yaml\n    volumes:\n      - '${HOME}/.local/share/mkcert:/mkcert:ro'\n      - '${HOME}/.local/share/dev_certificates:/cert:rw'\n\n    environment:\n      MKCERT_DOMAINS: \"example.docker *.example.docker local.docker\"\n      VIRTUAL_HOST: example.docker\n      VIRTUAL_PORT: 80\n      HTTPS_METHOD: noredirect\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Freload%2Fdrupal-apache-fpm","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Freload%2Fdrupal-apache-fpm","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Freload%2Fdrupal-apache-fpm/lists"}