This commit is contained in:
@@ -10,14 +10,31 @@
|
|||||||
"network"
|
"network"
|
||||||
],
|
],
|
||||||
"description": "Nginx Proxy Manager enables you to easily forward to your websites running at home or otherwise, including free SSL, without having to know too much about Nginx or Letsencrypt.",
|
"description": "Nginx Proxy Manager enables you to easily forward to your websites running at home or otherwise, including free SSL, without having to know too much about Nginx or Letsencrypt.",
|
||||||
"tipi_version": 1,
|
"tipi_version": 2,
|
||||||
"version": "2.13.5",
|
"version": "2.13.5",
|
||||||
"source": "https://github.com/NginxProxyManager/nginx-proxy-manager",
|
"source": "https://github.com/NginxProxyManager/nginx-proxy-manager",
|
||||||
"website": "https://nginxproxymanager.com",
|
"website": "https://nginxproxymanager.com",
|
||||||
"exposable": true,
|
"exposable": true,
|
||||||
"dynamic_config": false,
|
"dynamic_config": false,
|
||||||
"no_gui": false,
|
"no_gui": false,
|
||||||
"form_fields": [],
|
"form_fields": [
|
||||||
|
{
|
||||||
|
"type": "number",
|
||||||
|
"label": "HTTP Port",
|
||||||
|
"env_variable": "NPM_HTTP_PORT",
|
||||||
|
"default": "1080",
|
||||||
|
"required": true,
|
||||||
|
"hint": "Port for HTTP traffic (mapped to container port 80)"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "number",
|
||||||
|
"label": "HTTPS Port",
|
||||||
|
"env_variable": "NPM_HTTPS_PORT",
|
||||||
|
"default": "10443",
|
||||||
|
"required": true,
|
||||||
|
"hint": "Port for HTTPS traffic (mapped to container port 443)"
|
||||||
|
}
|
||||||
|
],
|
||||||
"supported_architectures": [
|
"supported_architectures": [
|
||||||
"arm64",
|
"arm64",
|
||||||
"amd64"
|
"amd64"
|
||||||
|
|||||||
@@ -11,8 +11,8 @@ services:
|
|||||||
environment:
|
environment:
|
||||||
DISABLE_IPV6: "true"
|
DISABLE_IPV6: "true"
|
||||||
ports:
|
ports:
|
||||||
- 1080:80
|
- ${NPM_HTTP_PORT}:80
|
||||||
- 10443:443
|
- ${NPM_HTTPS_PORT}:443
|
||||||
- ${APP_PORT}:81
|
- ${APP_PORT}:81
|
||||||
volumes:
|
volumes:
|
||||||
- ${APP_DATA_DIR}/data:/data
|
- ${APP_DATA_DIR}/data:/data
|
||||||
|
|||||||
Reference in New Issue
Block a user