[GH-ISSUE #3123] Need Help with Nginx Proxy Manager Configuration #2116

Closed
opened 2026-02-26 07:34:05 +03:00 by kerem · 2 comments
Owner

Originally created by @csweering on GitHub (Aug 13, 2023).
Original GitHub issue: https://github.com/NginxProxyManager/nginx-proxy-manager/issues/3123

Hello everyone,

I'm facing a bit of a challenge and could use your assistance. I've recently performed a clean installation of Debian 12 and have successfully set up Docker and Docker Compose. Everything seems to work smoothly with the local IP, but I'm encountering issues accessing it via my domain. Interestingly, it works perfectly when I use TOR to access the server. I've checked the firewall settings and ensured port forwarding is correctly configured. I've also obtained an SSL key.

Below is the script I'm using to install Nginx Proxy Manager (NPM):

version: '3'

services:
  app:
    image: 'jc21/nginx-proxy-manager:latest'
    restart: unless-stopped
    ports:
      - '80:80'
      - '443:443'
      - '81:81'
    environment:
      DB_MYSQL_HOST: "db"
      DB_MYSQL_PORT: 3306
      DB_MYSQL_USER: "XXXXXX"
      DB_MYSQL_PASSWORD: "XXXXXXX"
      DB_MYSQL_NAME: "XXXXXXX"
    volumes:
      - ./data:/data
      - ./letsencrypt:/etc/letsencrypt
    depends_on:
      - db
    networks:
      - mynetwork

  db:
    image: 'jc21/mariadb-aria:latest'
    restart: unless-stopped
    environment:
      MYSQL_ROOT_PASSWORD: 'XXXXX'
      MYSQL_DATABASE: 'XXXXXX'
      MYSQL_USER: 'XXXXXXXX'
      MYSQL_PASSWORD: 'XXXXXXX'
    volumes:
      - ./mysql:/var/lib/mysql
    networks:
      - mynetwork

networks:
  mynetwork:
    external: true

I've followed this script to install NPM. Despite my efforts, I'm unable to figure out why the domain access isn't working as expected. I've done some basic troubleshooting, but I'm stuck now. Your insights and guidance would be greatly appreciated.

Thank you all for your time and assistance!

Best regards,
Carlo

Originally created by @csweering on GitHub (Aug 13, 2023). Original GitHub issue: https://github.com/NginxProxyManager/nginx-proxy-manager/issues/3123 Hello everyone, I'm facing a bit of a challenge and could use your assistance. I've recently performed a clean installation of Debian 12 and have successfully set up Docker and Docker Compose. Everything seems to work smoothly with the local IP, but I'm encountering issues accessing it via my domain. Interestingly, it works perfectly when I use TOR to access the server. I've checked the firewall settings and ensured port forwarding is correctly configured. I've also obtained an SSL key. Below is the script I'm using to install Nginx Proxy Manager (NPM): ```yaml version: '3' services: app: image: 'jc21/nginx-proxy-manager:latest' restart: unless-stopped ports: - '80:80' - '443:443' - '81:81' environment: DB_MYSQL_HOST: "db" DB_MYSQL_PORT: 3306 DB_MYSQL_USER: "XXXXXX" DB_MYSQL_PASSWORD: "XXXXXXX" DB_MYSQL_NAME: "XXXXXXX" volumes: - ./data:/data - ./letsencrypt:/etc/letsencrypt depends_on: - db networks: - mynetwork db: image: 'jc21/mariadb-aria:latest' restart: unless-stopped environment: MYSQL_ROOT_PASSWORD: 'XXXXX' MYSQL_DATABASE: 'XXXXXX' MYSQL_USER: 'XXXXXXXX' MYSQL_PASSWORD: 'XXXXXXX' volumes: - ./mysql:/var/lib/mysql networks: - mynetwork networks: mynetwork: external: true ``` I've followed this script to install NPM. Despite my efforts, I'm unable to figure out why the domain access isn't working as expected. I've done some basic troubleshooting, but I'm stuck now. Your insights and guidance would be greatly appreciated. Thank you all for your time and assistance! Best regards, Carlo
kerem 2026-02-26 07:34:05 +03:00
Author
Owner

@github-actions[bot] commented on GitHub (Apr 7, 2024):

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

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

@github-actions[bot] commented on GitHub (Jun 5, 2025):

Issue was closed due to inactivity.

<!-- gh-comment-id:2942526822 --> @github-actions[bot] commented on GitHub (Jun 5, 2025): Issue was closed due to inactivity.
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#2116
No description provided.