/
/
/
1================================================
2CONNECTIVITY DEVICE SERVICES OVERVIEW
3================================================
4Device: {{ inventory_hostname }}
5IP Address: {{ ansible_default_ipv4.address }}
6Generated: {{ ansible_date_time.iso8601 }}
7
8================================================
9ACTIVE SERVICES
10================================================
11
12{% if connectivity_wireguard_enabled %}
13ð WireGuard VPN
14 VPN Access: {{ ansible_default_ipv4.address }}:{{ connectivity_wireguard_port }} (UDP)
15 Web UI: http://{{ ansible_default_ipv4.address }}:{{ connectivity_wireguard_web_port }}
16 Password: {{ connectivity_wireguard_password }}
17 Network: {{ connectivity_wireguard_subnet }}
18
19{% endif %}
20{% if connectivity_nginx_proxy_enabled %}
21ð Nginx Proxy Manager
22 Admin UI: http://{{ ansible_default_ipv4.address }}:{{ connectivity_nginx_proxy_admin_port }}
23 HTTP Proxy: {{ ansible_default_ipv4.address }}:{{ connectivity_nginx_proxy_http_port }}
24 HTTPS Proxy: {{ ansible_default_ipv4.address }}:{{ connectivity_nginx_proxy_https_port }}
25 Default Login: [email protected] / changeme
26 â ï¸ CHANGE DEFAULT CREDENTIALS!
27
28{% endif %}
29{% if connectivity_pihole_enabled %}
30ð¡ï¸ Pi-hole DNS
31 Web UI: http://{{ ansible_default_ipv4.address }}:{{ connectivity_pihole_web_port }}/admin
32 Password: {{ connectivity_pihole_password }}
33 DNS Server: {{ ansible_default_ipv4.address }}:{{ connectivity_pihole_dns_port }}
34 {% if connectivity_pihole_dhcp_enabled %}DHCP Server: Enabled{% endif %}
35
36{% endif %}
37{% if connectivity_unbound_enabled %}
38ð Unbound DNS
39 Recursive DNS: {{ ansible_default_ipv4.address }}:{{ connectivity_unbound_port }}
40 Integration: Pi-hole â Unbound
41
42{% endif %}
43================================================
44DOCKER MANAGEMENT
45================================================
46
47Service Control:
48 Start All: docker compose up -d (in service directories)
49 Stop All: docker compose down (in service directories)
50 Status: docker ps
51 Logs: docker compose logs -f (in service directories)
52
53Health Check:
54 Use native Ansible health checks and service monitoring
55
56{% if backup_enabled %}
57Backup:
58 Manual backup procedures recommended
59
60{% endif %}
61================================================
62NETWORK CONFIGURATION
63================================================
64
65
66Docker Network: {{ connectivity_network_name }}
67Subnet: {{ connectivity_subnet }}
68
69================================================
70NEXT STEPS
71================================================
72
73{% if connectivity_wireguard_enabled %}
741. WireGuard VPN Setup:
75 - Access web UI: http://{{ ansible_default_ipv4.address }}:{{ connectivity_wireguard_web_port }}
76 - Create client configurations
77 - Download client configs
78 - Configure client devices
79
80{% endif %}
81{% if connectivity_nginx_proxy_enabled %}
822. Nginx Proxy Manager:
83 - Change default admin credentials
84 - Configure SSL certificates
85 - Add proxy hosts for internal services
86 - Setup custom domains
87
88{% endif %}
89{% if connectivity_pihole_enabled %}
903. Pi-hole DNS:
91 - Configure client devices to use {{ ansible_default_ipv4.address }} as DNS
92 - Customize blocking lists
93 - Add local DNS entries
94 - Monitor query logs
95
96{% endif %}
97================================================
98TROUBLESHOOTING
99================================================
100
101Container Status: docker ps
102Service Logs: docker logs <service_name>
103Network Test: dig @{{ ansible_default_ipv4.address }} google.com
104
105Support Information:
106- Configuration: {{ connectivity_docker_base_path }}
107- Service Directories: {{ connectivity_docker_base_path }}/[service-name]
108- Backups: {{ connectivity_docker_base_path }}/backups/