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
+5-2Lines changed: 5 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -51,7 +51,8 @@ goaccess:
51
51
- DEBUG=False #optional
52
52
- BASIC_AUTH=False #optional
53
53
- BASIC_AUTH_USERNAME=user #optional
54
-
- BASIC_AUTH_PASSWORD=pass #optional
54
+
- BASIC_AUTH_PASSWORD=pass #optional
55
+
- EXCLUDE_IPS=127.0.0.1 #comma delimited list
55
56
ports:
56
57
- '7880:7880'
57
58
volumes:
@@ -75,7 +76,8 @@ goaccess:
75
76
- DEBUG=False #optional
76
77
- BASIC_AUTH=False #optional
77
78
- BASIC_AUTH_USERNAME=user #optional
78
-
- BASIC_AUTH_PASSWORD=pass #optional
79
+
- BASIC_AUTH_PASSWORD=pass #optional
80
+
- EXCLUDE_IPS=127.0.0.1 #comma delimited
79
81
```
80
82
81
83
| Parameter | Function |
@@ -85,6 +87,7 @@ goaccess:
85
87
| `-e BASIC_AUTH=True/False` | (Optional) Defaults to False. Set to True to enable nginx basic authentication. Docker container needs to stopped or restarted each time this flag is modified. This allows for the .htpasswd file to be changed accordingly. |
86
88
| `-e BASIC_AUTH_USERNAME=user` | (Optional) Requires BASIC_AUTH to bet set to True. Username for basic authentication. |
87
89
| `-e BASIC_AUTH_PASSWORD=pass` | (Optional) Requires BASIC_AUTH to bet set to True. Password for basic authentication. |
90
+
| `-e EXCLUDE_IPS=` | (Optional) IP Addresses or range of IPs delimited by comma refer to https://goaccess.io/man. For example: 192.168.0.1-192.168.0.100 or 127.0.0.1,192.168.0.1-192.168.0.100 |
88
91
89
92
Thanks to https://github.com/GregYankovoy for the inspiration, and for their nginx.conf :)
0 commit comments