-
Notifications
You must be signed in to change notification settings - Fork 98
/
NginxProxyManager.json
66 lines (64 loc) · 2.02 KB
/
NginxProxyManager.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"Nginx-proxy-manager": {
"containers": {
"nginx-proxy": {
"image": "jlesage/nginx-proxy-manager",
"launch_order": 1,
"opts": [
[
"-e",
"DISABLE_IPV6=true"
]
],
"ports": {
"8181": {
"description": "Admin WebUI port",
"host_default": 8282,
"label": "WebUI Port",
"ui": true
},
"8080":{
"description": "Port where nginx will listen for http connections",
"host_default": 8080,
"label": "Http port",
"ui": false
},
"4443":{
"description": "Port where nginx will listen for https connections",
"host_default": 4443,
"label": "Https port",
"ui": false
}
},
"volumes": {
"/config": {
"description": "Choose a Share for configuration. Eg: create a Share called nginx-proxy-manager-config for this purpose alone.",
"label": "Config Storage",
"min_size": 1073741824
}
},
"environment": {
"PUID": {
"description": "UID to run NginxProxyManager as.",
"label": "UID",
"index": 1
},
"PGID": {
"description": "Enter a valid GID to use along with the same UID. It (or the above UID) must have full permissions to all shares mapped in the previous step.",
"label": "GID",
"index": 2
}
}
}
},
"description": "Managing Nginx proxy hosts with a simple, powerful interface.<p>Based on a custom docker image: <a href='https://hub.docker.com/r/jlesage/nginx-proxy-manager/' target='_blank'>https://hub.docker.com/r/jlesage/nginx-proxy-manager</a>, available for amd64 architecture only.</p>",
"more_info": "<h4>First time login</h4><p>Default username is<code>[email protected]</code>and password is<code>changeme</code>. Make sure to change both the username and password after the first login.</p>",
"ui": {
"https": false,
"slug": ""
},
"volume_add_support": true,
"website": "https://nginxproxymanager.jc21.com/",
"version": "1.1"
}
}