{"id":16772252,"url":"https://github.com/m-adamski/zabbix-docker-stack","last_synced_at":"2026-05-09T00:02:08.177Z","repository":{"id":140759486,"uuid":"273455027","full_name":"m-adamski/zabbix-docker-stack","owner":"m-adamski","description":"Configuration file to run the Docker Compose stack of the Zabbix monitoring tool","archived":false,"fork":false,"pushed_at":"2023-10-02T13:52:13.000Z","size":8,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-06-07T13:04:35.068Z","etag":null,"topics":["docker","docker-compose","zabbix"],"latest_commit_sha":null,"homepage":"","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/m-adamski.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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":"2020-06-19T09:31:07.000Z","updated_at":"2023-10-02T11:30:23.000Z","dependencies_parsed_at":null,"dependency_job_id":"a47823aa-b2ef-4074-b8f8-a14e3bb8d9f1","html_url":"https://github.com/m-adamski/zabbix-docker-stack","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/m-adamski/zabbix-docker-stack","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/m-adamski%2Fzabbix-docker-stack","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/m-adamski%2Fzabbix-docker-stack/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/m-adamski%2Fzabbix-docker-stack/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/m-adamski%2Fzabbix-docker-stack/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/m-adamski","download_url":"https://codeload.github.com/m-adamski/zabbix-docker-stack/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/m-adamski%2Fzabbix-docker-stack/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32802533,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-08T08:22:46.396Z","status":"ssl_error","status_checked_at":"2026-05-08T08:22:45.650Z","response_time":54,"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":["docker","docker-compose","zabbix"],"created_at":"2024-10-13T06:30:48.503Z","updated_at":"2026-05-09T00:02:08.154Z","avatar_url":"https://github.com/m-adamski.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Zabbix - Docker Stack\n\nConfiguration file to run the Docker Compose stack of the Zabbix monitoring tool\n\n## NGINX Reverse Proxy\n\nIn this configuration we would like to proxy all requests through NGINX\n\n```\nserver {\n    listen 80;\n    listen [::]:80;\n\n    server_name zabbix.example.com;\n    server_tokens off;\n\n    if ($host = zabbix.example.com) {\n        return 301 https://$host$request_uri;\n    }\n\n    return 404;\n}\n\nserver {\n    listen 443 ssl http2;\n    listen [::]:443 ssl http2 ipv6only=on;\n\n    server_name zabbix.example.com;\n    server_tokens off;\n\n    # Configuration of the Content Security Policy\n    add_header X-Content-Type-Options nosniff;\n    add_header X-XSS-Protection \"1; mode=block\";\n    add_header X-Frame-Options DENY;\n    add_header Strict-Transport-Security \"max-age=31536000 includeSubDomains\" always;\n\n    # SSL Configuration\n    ssl_session_timeout 1d;\n    ssl_session_cache shared:SSL:10m;\n    ssl_session_tickets off;\n\n    ssl_protocols TLSv1.2 TLSv1.3;\n    ssl_ciphers ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:DHE-RSA-AES128-GCM-SHA256:DHE-RSA-AES256-GCM-SHA384;\n    ssl_prefer_server_ciphers off;\n\n    ssl_stapling on;\n    ssl_stapling_verify on;\n\n    # SSL Certificate\n    ssl_certificate /etc/ssl/zabbix.example.com.pem;\n    ssl_certificate_key /etc/ssl/zabbix.example.com.key;\n\n    location / {\n        proxy_redirect     off;\n        proxy_set_header   Host $host;\n        proxy_set_header   X-Real-IP $remote_addr;\n        proxy_set_header   X-Forwarded-For $proxy_add_x_forwarded_for;\n        proxy_set_header   X-Forwarded-Proto $scheme;\n        proxy_set_header   X-Forwarded-Host $server_name;\n        proxy_set_header   X-Forwarded-Port $server_port;\n        proxy_pass         http://localhost:8080;\n    }\n\n    error_log /var/log/nginx/zabbix.example.com_error.log;\n    access_log /var/log/nginx/zabbix.example.com_access.log;\n}\n```\n\nThere is also an option to generate a self-signed certificate and place it on the zabbix-web volume (default /var/lib/docker/volumes/zabbix-web.ssl/_data). Three files are required:\n\n* dhparam.pem\n* ssl.crt\n* ssl.key\n\nAfter restarting the container, SSL should be available on port 8443.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fm-adamski%2Fzabbix-docker-stack","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fm-adamski%2Fzabbix-docker-stack","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fm-adamski%2Fzabbix-docker-stack/lists"}