Sign inSign up

justsky/goaccess-for-nginxproxymanager

By justsky

Updated over 1 year ago

Multi-arch image

Image
4

500K+

justsky/goaccess-for-nginxproxymanager repository overview

GoAccess for Nginx Proxy Manager Logs

Still in development... You might need to wait a bit if you have a large amount of logs for it to parse.

Docker image: https://hub.docker.com/r/xavierh/goaccess-for-nginxproxymanager

Docker tags: https://hub.docker.com/r/xavierh/goaccess-for-nginxproxymanager/tags

Github Repo: https://github.com/xavier-hernandez/goaccess-for-nginxproxymanager


Alt text

New to creating docker images so bear with me. I did this more for me then for public consumption but it appears to work so maybe someone might find it useful.

This docker container should work out of the box with Nginx Proxy Manager to parse proxy logs. The goaccess.conf has been configured to only access proxy logs and archived proxy logs.

The docker image scans and includes files matching the following criteria: proxy-host-_access.log.gz proxy-host-_access.log

Currently using GoAccess version: 1.5.5



Choose your version

stable: justsky/goaccess-for-nginxproxymanager:latest

latest stable development: justsky/goaccess-for-nginxproxymanager:develop



goaccess:
    image: justsky/goaccess-for-nginxproxymanager:latest
    container_name: goaccess
    restart: always
    environment:
        - TZ=America/New_York
        - SKIP_ARCHIVED_LOGS=False #optional   
        - BASIC_AUTH=False #optional
        - BASIC_AUTH_USERNAME=user #optional
        - BASIC_AUTH_PASSWORD=pass #optional                
    ports:
        - '7880:7880'
    volumes:
        - /path/to/host/nginx/logs:/opt/log

If you have permission issues, you can add PUID and PGID with the correct user id that has read access to the log files.

goaccess:
    image: justsky/goaccess-for-nginxproxymanager:latest
    container_name: goaccess
    restart: always
    volumes:
        - /path/to/host/nginx/logs:/opt/log
    ports:
        - '7880:7880'
    environment:
        - PUID=0
        - PGID=0
        - TZ=America/New_York        
        - SKIP_ARCHIVED_LOGS=False #optional
        - BASIC_AUTH=False #optional
        - BASIC_AUTH_USERNAME=user #optional
        - BASIC_AUTH_PASSWORD=pass #optional               
ParameterFunction
-e SKIP_ARCHIVED_LOGS=True/False(Optional) Defaults to False. Set to True to skip archived logs, i.e. proxy-host*.gz
-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.
-e BASIC_AUTH_USERNAME=user(Optional) Requires BASIC_AUTH to bet set to True. Username for basic authentication.
-e BASIC_AUTH_PASSWORD=pass(Optional) Requires BASIC_AUTH to bet set to True. Password for basic authentication.

Thanks to https://github.com/GregYankovoy for the inspiration, and for their nginx.conf :)

This product includes GeoLite2 data created by MaxMind, available from https://www.maxmind.com.

Tag summary

Content type

Image

Digest

sha256:172113119

Size

56.3 MB

Last updated

over 1 year ago

docker pull justsky/goaccess-for-nginxproxymanager