Skip to content

Commit

Permalink
Remove trailing spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
Sea-n committed Dec 13, 2023
1 parent b666bfd commit 0601571
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions DOCKER.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@

* This image supports building on the ARM architecture (e.g. Raspberry Pi)

* Do you want to change the timezone? Use the `-e` option to pass the time-zone setting to Docker. (e.g. `-e TZ="America/New_York"`)
* Do you want to change the timezone? Use the `-e` option to pass the time-zone setting to Docker. (e.g. `-e TZ="America/New_York"`)

* The container is built with geo-location support (see [the manual](https://goaccess.io/man#options)). To enable the respective panel, mount the geolocation database using `-v /path/to/GeoLite2-City.mmdb:/GeoLite2-City.mmdb` and specify `--geoip-database /GeoLite2-City.mmdb` when running GoAccess.

* If you made changes to the config file after building the image, you don't have to rebuild from scratch. Simply restart the container:

```
docker restart goaccess
```
```

* If you had already run the container, you may have to stop and remove it first:

Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -264,11 +264,11 @@ To output to a terminal and generate an interactive report:
To generate an HTML report:

# goaccess access.log -a > report.html

To generate a JSON report:

# goaccess access.log -a -d -o json > report.json

To generate a CSV file:

# goaccess access.log --no-csv-summary -o csv > report.csv
Expand Down Expand Up @@ -381,7 +381,7 @@ And you would like to append the virtual host to the request in order to see
which virtual host the top urls belong to:

awk '$8=$1$8' access.log | goaccess -a -

To do the same, but also use real-time filtering and parsing:

tail -f access.log | unbuffer -p awk '$8=$1$8' | goaccess -a -
Expand Down Expand Up @@ -429,7 +429,7 @@ your local machine!
# ssh -n root@server 'tail -f /var/log/apache2/access.log' | goaccess -

**Note:** SSH requires `-n` so GoAccess can read from stdin. Also, make sure to
use SSH keys for authentication as it won't work if a passphrase is required.
use SSH keys for authentication as it won't work if a passphrase is required.

#### Troubleshooting ####

Expand Down
6 changes: 3 additions & 3 deletions SECURITY.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Security Policy

Found a security issue in [GoAccess](https://github.com/allinurl/goaccess)?
Read on.
Read on.

## Reporting a Vulnerability

Expand All @@ -10,7 +10,7 @@ security of `goaccess`. I appreciate your efforts and responsible disclosure
and will make every effort to acknowledge your contributions.

Vulnerabilities should be reported to [[email protected]](mailto:[email protected]) which is a private,
maintainer-only email address.
maintainer-only email address.


When I receive a security bug report, I will work on the fix and prepare a
Expand All @@ -34,4 +34,4 @@ possible):

> Note: Please do not open public issues for security issues, as GitHub does
> not provide facility for private issues, and deleting the issue makes it hard
> to triage/respond back to the reporter.
> to triage/respond back to the reporter.
4 changes: 2 additions & 2 deletions goaccess.1
Original file line number Diff line number Diff line change
Expand Up @@ -1296,8 +1296,8 @@ requests with the same IP, date, and user agent are considered a unique visit.
.P

If you want to enable dual-stack support, please use
.I --addr=::
instead of the default
.I --addr=::
instead of the default
.I --addr=0.0.0.0.
.P
The generated report will attempt to reconnect to the WebSocket server after 1
Expand Down
2 changes: 1 addition & 1 deletion po/Makevars
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ top_builddir = ..
AM_CPPFLAGS = -I. -I$(srcdir)

# These options get passed to xgettext.
XGETTEXT_OPTIONS = --from-code=UTF-8 --keyword=_ --keyword=N_
XGETTEXT_OPTIONS = --from-code=UTF-8 --keyword=_ --keyword=N_

# This is the copyright holder that gets inserted into the header of the
# $(DOMAIN).pot file. Set this to the copyright holder of the surrounding
Expand Down

0 comments on commit 0601571

Please sign in to comment.