{"id":29356992,"url":"https://github.com/cesnet/ansible-role-reverseproxy-docker","last_synced_at":"2026-02-19T06:31:32.686Z","repository":{"id":139726039,"uuid":"360091717","full_name":"CESNET/ansible-role-reverseproxy-docker","owner":"CESNET","description":null,"archived":false,"fork":false,"pushed_at":"2024-06-17T16:59:05.000Z","size":5,"stargazers_count":0,"open_issues_count":0,"forks_count":1,"subscribers_count":7,"default_branch":"main","last_synced_at":"2026-01-12T23:32:12.241Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Jinja","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/CESNET.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}},"created_at":"2021-04-21T08:35:02.000Z","updated_at":"2024-04-02T10:39:05.000Z","dependencies_parsed_at":null,"dependency_job_id":"fd3e5dba-6352-4d0d-8b0f-c89d6e4ca121","html_url":"https://github.com/CESNET/ansible-role-reverseproxy-docker","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/CESNET/ansible-role-reverseproxy-docker","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CESNET%2Fansible-role-reverseproxy-docker","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CESNET%2Fansible-role-reverseproxy-docker/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CESNET%2Fansible-role-reverseproxy-docker/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CESNET%2Fansible-role-reverseproxy-docker/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/CESNET","download_url":"https://codeload.github.com/CESNET/ansible-role-reverseproxy-docker/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CESNET%2Fansible-role-reverseproxy-docker/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29604775,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-19T05:11:50.834Z","status":"ssl_error","status_checked_at":"2026-02-19T05:11:38.921Z","response_time":117,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5: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":[],"created_at":"2025-07-09T05:41:20.341Z","updated_at":"2026-02-19T06:31:32.681Z","avatar_url":"https://github.com/CESNET.png","language":"Jinja","funding_links":[],"categories":[],"sub_categories":[],"readme":"ansible-role-reverseproxy-docker\n=========\n\nAnsible role for running reverseproxy based on nginx in docker.\n\n* In default configuration logs to syslog.\n\nRequirements\n------------\n\n* community.docker collection is required. Can be installed by `ansible-galaxy collection install community.docker`\n* For use docker containers from another repository than from docker hub, you can use [ansible-role-aai-docker-environment](https://github.com/CESNET/ansible-role-aai-docker-environment)\n\nRole Variables\n--------------\n\n* reverseproxy_path - The main path where all files will be stored\n  * Default value: \"/opt/reverseproxy\"\n* reverseproxy_docker_image - Docker image with tag (Used only by the default-docker-compose.yml.j2 template)\n  * Default value: \"nginx:latest\"\n* reverseproxy_docker_network - External docker network, that will be used for connect (Used only by the default-docker-compose.yml.j2 template)\n  * Default value: \"network\"\n* reverseproxy_docker_compose_template - The docker-compose template which will be used\n  * Default value: \"default-docker-compose.yml\"\n* reverseproxy_dirs - List of directories, that will be created on host\n  * Example value:\n  ```\n  - { path: \"{{ reverseproxy_path }}\" }\n  - { path: \"{{ reverseproxy_path }}/etc\" }\n    where:\n      path - Directive path; required\n      Default owner: root\n      Default group: root\n      Default mode: 0755\n  ```\n* reverseproxy_files - List of files, that will be copyied to host\n  * Example value:\n  ```\n  - { src: \"reverseproxy/etc/nginx/nginx-tls.conf\", dest: \"/etc/nginx/nginx-tls.conf\" }\n    where:\n      src - path to source file; required\n      dest - relative to {{ reverseproxy_path }} - default value {{ src }}\n      Default owner: root\n      Default group: root\n      Default mode: 0644\n  ```\n  - { src: \"etc/nginx/nginx.conf\", dest: \"/etc/nginx/nginx.conf\"}\n* reverseproxy_templates - List of files, that will be created by template\n  * Example value:\n  ```\n  - { src: \"reverseproxy/etc/nginx/nginx.conf\", dest: \"/etc/nginx/nginx.conf\", owner: \"root\", group: \"root\", mode: 0755 }\n    where:\n      src - path to the template file without .j2; required\n      dest - relative to {{ reverseproxy_path }} - default value {{ src }}\n      Default owner: root\n      Default group: root\n      Default mode: 0644\n  ```\n* reverseproxy_site_specific_tasks - Path to the additional file with specific tasks\n  * Not required\n  * Default: None\n\nDependencies\n------------\n\n* collection `community.docker`\n* [ansible-role-aai-docker-environment](https://github.com/CESNET/ansible-role-aai-docker-environment) (Optional)\n\nExample Playbook\n----------------\n\nIncluding an example of how to use your role (for instance, with variables passed in as parameters) is always nice for users too:\n\n    - hosts: servers\n      roles:\n         - { role: ansible-role-reverseproxy-docker }\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcesnet%2Fansible-role-reverseproxy-docker","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcesnet%2Fansible-role-reverseproxy-docker","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcesnet%2Fansible-role-reverseproxy-docker/lists"}