Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ stack_deploy_dir: "/opt/octobot-sync"
s3_bucket: "octobot-sync-dev"
s3_region: "garage"
octobot_sync_port: 3000
nginx_port: 8080
nginx_port: 80
garage_replication_factor: 1

# Map vault → app vars
Expand All @@ -27,7 +27,7 @@ evm_contract_base: "{{ vault_evm_contract_base | default('') }}"
# Firewall (geerlingguy.firewall)
firewall_allowed_tcp_ports:
- "22"
- "8080"
- "80"
# Port 3901 (Garage RPC) restricted to peer IPs only — see sync_nodes group vars

# Docker (geerlingguy.docker)
Expand Down
5 changes: 5 additions & 0 deletions infra/sync/ansible/roles/stack/tasks/main.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
---
- name: Restart Docker to rebuild iptables chains after firewall changes
ansible.builtin.service:
name: docker
state: restarted

- name: Create deploy directory
ansible.builtin.file:
path: "{{ stack_deploy_dir }}"
Expand Down
Loading