Skip to content

Commit 0601571

Browse files
committed
Remove trailing spaces
1 parent b666bfd commit 0601571

File tree

5 files changed

+12
-12
lines changed

5 files changed

+12
-12
lines changed

DOCKER.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@
55

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

8-
* 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"`)
8+
* 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"`)
99

1010
* 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.
1111

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

1414
```
1515
docker restart goaccess
16-
```
16+
```
1717

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

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -264,11 +264,11 @@ To output to a terminal and generate an interactive report:
264264
To generate an HTML report:
265265

266266
# goaccess access.log -a > report.html
267-
267+
268268
To generate a JSON report:
269269

270270
# goaccess access.log -a -d -o json > report.json
271-
271+
272272
To generate a CSV file:
273273

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

383383
awk '$8=$1$8' access.log | goaccess -a -
384-
384+
385385
To do the same, but also use real-time filtering and parsing:
386386

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

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

434434
#### Troubleshooting ####
435435

SECURITY.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Security Policy
22

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

66
## Reporting a Vulnerability
77

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

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

1515

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

3535
> Note: Please do not open public issues for security issues, as GitHub does
3636
> not provide facility for private issues, and deleting the issue makes it hard
37-
> to triage/respond back to the reporter.
37+
> to triage/respond back to the reporter.

goaccess.1

+2-2
Original file line numberDiff line numberDiff line change
@@ -1296,8 +1296,8 @@ requests with the same IP, date, and user agent are considered a unique visit.
12961296
.P
12971297

12981298
If you want to enable dual-stack support, please use
1299-
.I --addr=::
1300-
instead of the default
1299+
.I --addr=::
1300+
instead of the default
13011301
.I --addr=0.0.0.0.
13021302
.P
13031303
The generated report will attempt to reconnect to the WebSocket server after 1

po/Makevars

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ top_builddir = ..
99
AM_CPPFLAGS = -I. -I$(srcdir)
1010

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

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

0 commit comments

Comments
 (0)