Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

App Submission: NPM (Nginx Proxy Manager) #1296

Open
wants to merge 8 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Empty file.
Empty file.
Empty file.
23 changes: 23 additions & 0 deletions nginx-proxy-manager/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
version: "3.7"

services:
app_proxy:
environment:
APP_HOST: nginx-proxy-manager_web_1
APP_PORT: 81
web:
image: jc21/nginx-proxy-manager:2.11.3@sha256:5bd2aae54ac0b6f4ef6777143ab736baf5366807894a4c7fca7bfa2fbaf1489c
hostname: nginx-proxy-manager_web_1
restart: on-failure
ports:

Check notice on line 12 in nginx-proxy-manager/docker-compose.yml

View workflow job for this annotation

GitHub Actions / Lint apps

External port mapping "40080:80"

Port mappings may be unnecessary for the app to function correctly. Docker's internal DNS resolves container names to IP addresses within the same network. External access to the web interface is handled by the app_proxy container. Port mappings are only needed if external access is required to a port not proxied by the app_proxy, or if an app needs to expose multiple ports for its functionality (e.g., DHCP, DNS, P2P, etc.).

Check notice on line 12 in nginx-proxy-manager/docker-compose.yml

View workflow job for this annotation

GitHub Actions / Lint apps

External port mapping "40443:443"

Port mappings may be unnecessary for the app to function correctly. Docker's internal DNS resolves container names to IP addresses within the same network. External access to the web interface is handled by the app_proxy container. Port mappings are only needed if external access is required to a port not proxied by the app_proxy, or if an app needs to expose multiple ports for its functionality (e.g., DHCP, DNS, P2P, etc.).
- 40080:80
- 40443:443
volumes:
- ${APP_DATA_DIR}/data/npm-data:/data
- ${APP_DATA_DIR}/data/letsencrypt:/etc/letsencrypt
environment:
PUID: 1000
PGID: 1000
sahilph marked this conversation as resolved.
Show resolved Hide resolved
extra_hosts:
- "host.docker.internal:host-gateway"
- "${APP_DOMAIN}:host-gateway"
45 changes: 45 additions & 0 deletions nginx-proxy-manager/umbrel-app.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
manifestVersion: 1
id: nginx-proxy-manager
name: Nginx Proxy Manager
tagline: Expose your services easily and securely
category: networking
version: "2.11.3"
port: 81
description: >-
Expose your services easily and securely


Features:

- Beautiful and Secure Admin Interface based on Tabler: https://tabler.github.io/

- Easily create forwarding domains, redirections, streams and 404 hosts without knowing anything about Nginx

- Free SSL using Let's Encrypt or provide your own custom SSL certificates

- Access Lists and basic HTTP Authentication for your hosts

- Advanced Nginx configuration available for super users

- User management, permissions and audit log


⚠️ Please take care while exposing apps to the internet.

⚠️ Note: This app listen on ports 40080 and 40443. In order to make the apps proxied by NPM accessible from internet, users need to port forward 80 to 40080 and 443 to 40443 on their router. ⚠️

developer: Jamie Curnow
website: https://nginxproxymanager.com/
submitter: sahilph
submission: https://github.com/getumbrel/umbrel-apps/pull/1296
repo: https://github.com/NginxProxyManager/nginx-proxy-manager
support: https://github.com/NginxProxyManager/nginx-proxy-manager/issues
gallery:

Check warning on line 37 in nginx-proxy-manager/umbrel-app.yml

View workflow job for this annotation

GitHub Actions / Lint apps

"icon" and "gallery" needs to be empty for new app submissions

The "icon" and "gallery" fields must be empty for new app submissions as it is being created by the Umbrel team.
- 1.jpg
- 2.jpg
- 3.jpg
releaseNotes: ""
dependencies: []
path: ""
defaultUsername: "[email protected]"
defaultPassword: "changeme"