[GH-ISSUE #401] Show (access) log in web interface #340

Open
opened 2026-02-26 06:32:26 +03:00 by kerem · 17 comments
Owner

Originally created by @xanthos84 on GitHub (May 9, 2020).
Original GitHub issue: https://github.com/NginxProxyManager/nginx-proxy-manager/issues/401

Easy FR here:

Like Audit Log some kind of Log View for the Reverse Proxy Hosts.

That would be awesome!
Thanks

Originally created by @xanthos84 on GitHub (May 9, 2020). Original GitHub issue: https://github.com/NginxProxyManager/nginx-proxy-manager/issues/401 Easy FR here: Like Audit Log some kind of Log View for the Reverse Proxy Hosts. That would be awesome! Thanks
Author
Owner

@ghost commented on GitHub (May 10, 2020):

you mean like a log of connections and/or visits?
I would like to second that idea!

<!-- gh-comment-id:626252719 --> @ghost commented on GitHub (May 10, 2020): you mean like a log of connections and/or visits? I would like to second that idea!
Author
Owner

@xanthos84 commented on GitHub (May 10, 2020):

yes absolutely!

<!-- gh-comment-id:626281879 --> @xanthos84 commented on GitHub (May 10, 2020): yes absolutely!
Author
Owner

@nightcomdev commented on GitHub (May 11, 2020):

I was asking about the same thing, simple stats. I vote for it!
https://github.com/jc21/nginx-proxy-manager/issues/359

<!-- gh-comment-id:626958284 --> @nightcomdev commented on GitHub (May 11, 2020): I was asking about the same thing, simple stats. I vote for it! [https://github.com/jc21/nginx-proxy-manager/issues/359](https://github.com/jc21/nginx-proxy-manager/issues/359)
Author
Owner

@damianog commented on GitHub (May 30, 2020):

A view for /data/logs/error.log will be very helpfull too.

<!-- gh-comment-id:636342721 --> @damianog commented on GitHub (May 30, 2020): A view for /data/logs/error.log will be very helpfull too.
Author
Owner

@M0E-lnx commented on GitHub (Feb 25, 2022):

+1
I'm also looking for this feature.

I need a solution to browse the access logs for each configured host. I know there are other solutions to this like goaccess for example, but I can't get that to work. Looks like the log syntax is different than what goaccess is expecting and I can't figure out a way to configure the logging format on nginx-proxy-manager.

<!-- gh-comment-id:1050936006 --> @M0E-lnx commented on GitHub (Feb 25, 2022): +1 I'm also looking for this feature. I need a solution to browse the access logs for each configured host. I know there are other solutions to this like goaccess for example, but I can't get that to work. Looks like the log syntax is different than what goaccess is expecting and I can't figure out a way to configure the logging format on nginx-proxy-manager.
Author
Owner

@leon1995 commented on GitHub (Sep 16, 2022):

Are there any new information to this? It would be really nice to have this feature

<!-- gh-comment-id:1249303105 --> @leon1995 commented on GitHub (Sep 16, 2022): Are there any new information to this? It would be really nice to have this feature
Author
Owner

@trentwiles commented on GitHub (Oct 31, 2022):

Any updates? SSHing into the docker container isn't convenient.

<!-- gh-comment-id:1297372981 --> @trentwiles commented on GitHub (Oct 31, 2022): Any updates? SSHing into the docker container isn't convenient.
Author
Owner

@kamilkosek commented on GitHub (Mar 16, 2023):

Hi all,
maybe it´s helpful for one or another. I just use frontail in a container for it.
Here´s my dead simple compose file:

version: '3'
services:
  nginxproxymanager:
    image: 'jc21/nginx-proxy-manager:latest'
    restart: unless-stopped
    ports:
      - '80:80'
      - '81:81'
      - '443:443'
    volumes:
      - /disks/nginx-proxy-manager/data:/data
      - /disks/nginx-proxy-manager/letsencrypt:/etc/letsencrypt
  frontail:
    image: mthenw/frontail:latest
    restart: always
    ports:
      - "9001:9001"
    volumes:
      - /disks/nginx-proxy-manager/data/logs:/log/npm
    command: '--ui-highlight /log/npm/default-host_access.log /log/npm/default-host_error.log /log/npm/fallback_access.log /log/npm/fallback_error.log /log/npm/letsencrypt-requests_access.log /log/npm/letsencrypt-requests_error.log /log/npm/proxy-host-1_access.log /log/npm/proxy-host-1_error.log /log/npm/proxy-host-2_access.log /log/npm/proxy-host-2_error.log /log/npm/proxy-host-3_access.log /log/npm/proxy-host-3_error.log /log/npm/proxy-host-4_access.log /log/npm/proxy-host-4_error.log /log/npm/proxy-host-5_access.log /log/npm/proxy-host-5_error.log /log/npm/proxy-host-6_access.log /log/npm/proxy-host-6_error.log /log/npm/proxy-host-7_access.log /log/npm/proxy-host-7_error.log /log/npm/proxy-host-8_access.log /log/npm/proxy-host-8_error.log /log/npm/proxy-host-9_access.log /log/npm/proxy-host-9_error.log'
<!-- gh-comment-id:1471714143 --> @kamilkosek commented on GitHub (Mar 16, 2023): Hi all, maybe it´s helpful for one or another. I just use [frontail ](https://github.com/mthenw/frontail) in a container for it. Here´s my dead simple compose file: ``` version: '3' services: nginxproxymanager: image: 'jc21/nginx-proxy-manager:latest' restart: unless-stopped ports: - '80:80' - '81:81' - '443:443' volumes: - /disks/nginx-proxy-manager/data:/data - /disks/nginx-proxy-manager/letsencrypt:/etc/letsencrypt frontail: image: mthenw/frontail:latest restart: always ports: - "9001:9001" volumes: - /disks/nginx-proxy-manager/data/logs:/log/npm command: '--ui-highlight /log/npm/default-host_access.log /log/npm/default-host_error.log /log/npm/fallback_access.log /log/npm/fallback_error.log /log/npm/letsencrypt-requests_access.log /log/npm/letsencrypt-requests_error.log /log/npm/proxy-host-1_access.log /log/npm/proxy-host-1_error.log /log/npm/proxy-host-2_access.log /log/npm/proxy-host-2_error.log /log/npm/proxy-host-3_access.log /log/npm/proxy-host-3_error.log /log/npm/proxy-host-4_access.log /log/npm/proxy-host-4_error.log /log/npm/proxy-host-5_access.log /log/npm/proxy-host-5_error.log /log/npm/proxy-host-6_access.log /log/npm/proxy-host-6_error.log /log/npm/proxy-host-7_access.log /log/npm/proxy-host-7_error.log /log/npm/proxy-host-8_access.log /log/npm/proxy-host-8_error.log /log/npm/proxy-host-9_access.log /log/npm/proxy-host-9_error.log' ```
Author
Owner

@github-actions[bot] commented on GitHub (Mar 29, 2024):

Issue is now considered stale. If you want to keep it open, please comment 👍

<!-- gh-comment-id:2026458479 --> @github-actions[bot] commented on GitHub (Mar 29, 2024): Issue is now considered stale. If you want to keep it open, please comment :+1:
Author
Owner

@cyberpower678 commented on GitHub (Mar 29, 2024):

Keep it open

<!-- gh-comment-id:2027295490 --> @cyberpower678 commented on GitHub (Mar 29, 2024): Keep it open
Author
Owner

@cyberpower678 commented on GitHub (Mar 29, 2024):

👍

<!-- gh-comment-id:2027295749 --> @cyberpower678 commented on GitHub (Mar 29, 2024): 👍
Author
Owner

@dimo414 commented on GitHub (Mar 29, 2024):

I have never seen stalebot be helpful. Wish repo maintainers would turn it off.

<!-- gh-comment-id:2027494829 --> @dimo414 commented on GitHub (Mar 29, 2024): I have never seen stalebot be helpful. Wish repo maintainers would turn it off.
Author
Owner

@github-actions[bot] commented on GitHub (Dec 21, 2024):

Issue is now considered stale. If you want to keep it open, please comment 👍

<!-- gh-comment-id:2557951262 --> @github-actions[bot] commented on GitHub (Dec 21, 2024): Issue is now considered stale. If you want to keep it open, please comment :+1:
Author
Owner

@spacefrogfeds commented on GitHub (Jan 3, 2025):

I would love this feature as well!

<!-- gh-comment-id:2568656106 --> @spacefrogfeds commented on GitHub (Jan 3, 2025): I would love this feature as well!
Author
Owner

@SpazeDev commented on GitHub (Jan 13, 2025):

👍

<!-- gh-comment-id:2587065028 --> @SpazeDev commented on GitHub (Jan 13, 2025): 👍
Author
Owner

@github-actions[bot] commented on GitHub (Nov 12, 2025):

Issue is now considered stale. If you want to keep it open, please comment 👍

<!-- gh-comment-id:3519568012 --> @github-actions[bot] commented on GitHub (Nov 12, 2025): Issue is now considered stale. If you want to keep it open, please comment :+1:
Author
Owner

@bramvandenbussche commented on GitHub (Dec 10, 2025):

Still interested in this !

<!-- gh-comment-id:3637202218 --> @bramvandenbussche commented on GitHub (Dec 10, 2025): Still interested in this !
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/nginx-proxy-manager-NginxProxyManager#340
No description provided.