Compare commits

...
5 Commits
Author SHA1 Message Date
yahoo_1999 b185ce4688 feat: Persisted all of opensearch-security folder 2026-08-08 15:32:59 +02:00
yahoo_1999 be559f44fc fix: dumb typo 2026-08-08 00:17:37 +02:00
yahoo_1999 f2930d74e7 fix: Swapped loadbalancer declarations
scheme seems to not be working???
2026-08-08 00:10:28 +02:00
yahoo_1999 790f8f5c47 fix: Set traefik proto to https
wazuh dashboard is served over HTTPS
2026-08-08 00:05:04 +02:00
yahoo_1999 8bed0692eb fix: Added network declarations
Traefik needs services in an accessible network
2026-08-07 23:58:22 +02:00
+15 -3
View File
@@ -42,7 +42,8 @@ services:
- /opt/stacks/wazuh/config/wazuh_indexer_ssl_certs/wazuh.manager.pem:/etc/ssl/filebeat.pem
- /opt/stacks/wazuh/config/wazuh_indexer_ssl_certs/wazuh.manager-key.pem:/etc/ssl/filebeat.key
- /opt/stacks/wazuh/config/wazuh_cluster/wazuh_manager.conf:/wazuh-config-mount/etc/ossec.conf
networks:
- backend
wazuh.indexer:
image: wazuh/wazuh-indexer:4.14.7
hostname: wazuh.indexer
@@ -66,7 +67,9 @@ services:
- /opt/stacks/wazuh/config/wazuh_indexer_ssl_certs/admin.pem:/usr/share/wazuh-indexer/config/certs/admin.pem
- /opt/stacks/wazuh/config/wazuh_indexer_ssl_certs/admin-key.pem:/usr/share/wazuh-indexer/config/certs/admin-key.pem
- /opt/stacks/wazuh/config/wazuh_indexer/wazuh.indexer.yml:/usr/share/wazuh-indexer/config/opensearch.yml
- /opt/stacks/wazuh/config/wazuh_indexer/internal_users.yml:/usr/share/wazuh-indexer/config/opensearch-security/internal_users.yml
- /opt/stacks/wazuh/config/wazuh_indexer/opensearch-security/:/usr/share/wazuh-indexer/config/opensearch-security/
networks:
- backend
wazuh.dashboard:
image: wazuh/wazuh-dashboard:4.14.7
@@ -100,8 +103,11 @@ services:
- traefik.http.routers.wazuh-dashboard.rule=Host(`wazuh.fuusenkazura.io`)
- traefik.http.routers.wazuh-dashboard.entrypoints=websecure
- traefik.http.routers.wazuh-dashboard.tls.certresolver=ovh
- traefik.http.services.wazuh-dashboard.loadbalancer.server.scheme=https
- traefik.http.services.wazuh-dashboard.loadbalancer.server.port=5601
networks:
- backend
- web
volumes:
wazuh_api_configuration:
wazuh_etc:
@@ -117,3 +123,9 @@ volumes:
wazuh-indexer-data:
wazuh-dashboard-config:
wazuh-dashboard-custom:
networks:
web:
external: true
backend:
external: true