From 1eb11e454dd4aa808edba6eb8776f1325802c12b Mon Sep 17 00:00:00 2001 From: Andrey Date: Fri, 19 Sep 2025 02:21:57 +0300 Subject: [PATCH] chore: remove Nginx service from docker-compose and update Ansible inventory with new server IP - Deleted the Nginx service configuration from docker-compose.yml. - Updated the Ansible inventory file to reflect a new server IP address. --- docker-compose.yml | 28 ---------------------------- 1 file changed, 28 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index 5be7f32..4e911c6 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -99,34 +99,6 @@ services: timeout: 10s retries: 3 - # Nginx Reverse Proxy - nginx: - image: nginx:alpine - container_name: bots_nginx - restart: unless-stopped - ports: - - "80:80" - - "443:443" - environment: - - SERVER_IP=${SERVER_IP} - volumes: - - ./infra/nginx/nginx.conf:/etc/nginx/nginx.conf:ro - - ./infra/nginx/conf.d:/etc/nginx/conf.d:ro - - ./infra/nginx/ssl:/etc/nginx/ssl:ro - - ./infra/nginx/.htpasswd:/etc/nginx/.htpasswd:ro - - /etc/letsencrypt:/etc/letsencrypt:ro - networks: - - bots_network - depends_on: - - grafana - - prometheus - - uptime-kuma - healthcheck: - test: ["CMD", "wget", "--no-verbose", "--tries=1", "--spider", "http://localhost/nginx-health"] - interval: 30s - timeout: 10s - retries: 3 - # Telegram Helper Bot telegram-bot: build: