Skip to main content

Setup

In this post we'll look at how to set up a dashboard for real-time stats from Nginx Proxy Manager logs.

 
Original Reddit Post:
GitHub:
Docker:
Docker Compose
version: "3"
services:
goaccess:
image: xavierh/goaccess-for-nginxproxymanager:develop
container_name: goaccess2
restart: always
environment:
- TZ=America/Denver
- PUID=998
- PGID=100
ports:
- '7880:7880'
volumes:
- /home/data/logs:/opt/log
Be sure to make the /home/data/logs to wherever your Nginx Proxy Manager logs are located. This does mean that you'll have to install this container on the same system that your Nginx Proxy Manager container is on.
At the time of writing this is only supported on x86 systems.