Skip to content

Commit b3dce0a

Browse files
v1.1.16
- updated MaxMind databases to 5/31/2023 - fixed a string/boolean issue with an environment setting - updated version number
1 parent d7df4bf commit b3dce0a

File tree

7 files changed

+6
-6
lines changed

7 files changed

+6
-6
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ RUN make install
2323
WORKDIR /goaccess
2424
RUN cp /goaccess-temp/goaccess.tar.gz .
2525
RUN tar --strip-components=1 -xzvf goaccess.tar.gz
26-
RUN sed -i "s/GWSocket<\/a>/GWSocket<\/a> ( <a href='https:\/\/tiny.one\/xgoan'>GOAN<\/a> <span>v1.1.15<\/span> )/" /goaccess/resources/tpls.html
26+
RUN sed -i "s/GWSocket<\/a>/GWSocket<\/a> ( <a href='https:\/\/tiny.one\/xgoan'>GOAN<\/a> <span>v1.1.16<\/span> )/" /goaccess/resources/tpls.html
2727
RUN sed -i "s/bottom: 190px/bottom: 260px/" /goaccess/resources/css/app.css
2828
RUN ./configure --enable-utf8 --enable-geoip=mmdb --with-getline
2929
RUN make

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ Still in development... You might need to wait a bit if you have a large amount
1515

1616
**Dependencies:**
1717
- GoAccess version: 1.7.2
18-
- GeoLite2-City.mmdb (2023-04-30)
19-
- GeoLite2-Country.mmdb (2023-04-30)
20-
- GeoLite2-ASN.mmdb (2023-04-30)
18+
- GeoLite2-City.mmdb (2023-05-31)
19+
- GeoLite2-Country.mmdb (2023-05-31)
20+
- GeoLite2-ASN.mmdb (2023-05-31)
2121

2222
---
2323

assests/maxmind/GeoLite2-ASN.mmdb

58.2 KB
Binary file not shown.

assests/maxmind/GeoLite2-City.mmdb

-1.66 MB
Binary file not shown.
101 KB
Binary file not shown.

resources/scripts/logs/npm.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ function npm(){
9191
echo -e "\tFound (${goan_log_count}) proxy logs..."
9292
echo -e "\n\tSKIP ARCHIVED LOGS"
9393
echo -e "\t-------------------------------"
94-
if [[ "${SKIP_ARCHIVED_LOGS}" == "True" ]]
94+
if [[ "${SKIP_ARCHIVED_LOGS}" == "True" || ${SKIP_ARCHIVED_LOGS} == true ]]
9595
then
9696
echo -e "\tTRUE"
9797
else

resources/scripts/start.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ source $(dirname "$0")/logs/traefik.sh
88
source $(dirname "$0")/logs/custom.sh
99
source $(dirname "$0")/logs/ncsa_combined.sh
1010

11-
goan_version="GOAN v1.1.15"
11+
goan_version="GOAN v1.1.16"
1212
goan_log_path="/opt/log"
1313

1414
goaccess_ping_interval=15

0 commit comments

Comments
 (0)