You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+11-18Lines changed: 11 additions & 18 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -44,26 +44,24 @@ runOnStart: true
44
44
continueOnError: false
45
45
46
46
origin:
47
-
url: https://adguard-master:8443
48
-
insecureSkipVerify: true
47
+
url: http://adguard-master:3000
49
48
username: admin
50
49
password: adguard
51
50
52
51
replicas:
53
-
- url: https://adguard-slave:8443
54
-
insecureSkipVerify: true
52
+
- url: http://adguard-slave:3000
55
53
username: admin
56
54
password: adguard
57
55
58
56
api:
59
-
port: 8443
57
+
port: 3000
60
58
username: admin
61
59
password: adguard
62
60
darkMode: true
63
-
tls:
64
-
certDir: /adguard-sync/etc/ssl
65
-
certName: default.crt
66
-
keyName: default.key
61
+
metrics:
62
+
enabled: true
63
+
scrapeInterval: 10s
64
+
queryLogLimit: 10000
67
65
68
66
features:
69
67
generalSettings: true
@@ -86,10 +84,6 @@ features:
86
84
87
85
# COMPOSE ✂️
88
86
```yaml
89
-
# This is a demo compose to showcase how the sync works. The two adguard s
90
-
# hould not be run on the same server, but different ones. Make sure to crea
91
-
# te a MACLVAN or other network so all images can communicate over multiple
92
-
# servers.
93
87
name: "adguard-sync"
94
88
services:
95
89
adguard-sync:
@@ -107,7 +101,7 @@ services:
107
101
volumes:
108
102
- "etc:/adguard/etc"
109
103
ports:
110
-
- "8443:8443/tcp"
104
+
- "3000:3000/tcp"
111
105
networks:
112
106
frontend:
113
107
restart: "always"
@@ -119,7 +113,7 @@ services:
119
113
ports:
120
114
- "1053:53/udp"
121
115
- "1053:53/tcp"
122
-
- "18443:8443/tcp"
116
+
- "3001:3000/tcp"
123
117
networks:
124
118
frontend:
125
119
restart: "always"
@@ -131,7 +125,7 @@ services:
131
125
ports:
132
126
- "2053:53/udp"
133
127
- "2053:53/tcp"
134
-
- "28443:8443/tcp"
128
+
- "3002:3000/tcp"
135
129
networks:
136
130
frontend:
137
131
restart: "always"
@@ -178,10 +172,9 @@ networks:
178
172
179
173
# CAUTION ⚠️
180
174
> [!CAUTION]
181
-
>* This image comes with a default SSL certificate. If you plan to expose the web interface via HTTPS, please replace the default certificate with your own or use a reverse proxy
182
175
>* This image comes with a default configuration with a default password for the admin account. Please set your own password or provide your own configuration.
183
176
184
177
# ElevenNotes™️
185
178
This image is provided to you at your own risk. Always make backups before updating an image to a different version. Check the [releases](https://github.com/11notes/docker-adguard-sync/releases) for breaking changes. If you have any problems with using this image simply raise an [issue](https://github.com/11notes/docker-adguard-sync/issues), thanks. If you have a question or inputs please create a new [discussion](https://github.com/11notes/docker-adguard-sync/discussions) instead of an issue. You can find all my other repositories on [github](https://github.com/11notes?tab=repositories).
0 commit comments