mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-11-21 17:56:53 +02:00
add nginx-proxy-manager
This commit is contained in:
parent
1939fbdf1e
commit
a5e0e7b26d
@ -432,6 +432,7 @@ A collection of delicious docker recipes.
|
||||
- [x] sonatype/nexus3
|
||||
- [x] nextcloud
|
||||
- [ ] jwilder/nginx-proxy
|
||||
- [x] jc21/nginx-proxy-manager
|
||||
- [x] luzifer/nginx-sso
|
||||
- [x] tiangolo/nginx-rtmp :camera:
|
||||
- [x] jupyter/notebook
|
||||
|
6
nginx-proxy-manager/README.md
Normal file
6
nginx-proxy-manager/README.md
Normal file
@ -0,0 +1,6 @@
|
||||
nginx-proxy-manager
|
||||
===================
|
||||
|
||||
[Nginx Proxy Manager][1] expose your services easily and securely.
|
||||
|
||||
[1]: https://nginxproxymanager.com/
|
0
nginx-proxy-manager/data/npm/nginx/custom/.gitkeep
Normal file
0
nginx-proxy-manager/data/npm/nginx/custom/.gitkeep
Normal file
2
nginx-proxy-manager/data/npm/nginx/custom/root_top.conf
Normal file
2
nginx-proxy-manager/data/npm/nginx/custom/root_top.conf
Normal file
@ -0,0 +1,2 @@
|
||||
load_module /usr/lib/nginx/modules/ngx_http_geoip2_module.so;
|
||||
load_module /usr/lib/nginx/modules/ngx_stream_geoip2_module.so;
|
0
nginx-proxy-manager/data/ssl/.gitkeep
Normal file
0
nginx-proxy-manager/data/ssl/.gitkeep
Normal file
15
nginx-proxy-manager/docker-compose.yaml
Normal file
15
nginx-proxy-manager/docker-compose.yaml
Normal file
@ -0,0 +1,15 @@
|
||||
version: "3.8"
|
||||
services:
|
||||
npm:
|
||||
image: "jc21/nginx-proxy-manager:2"
|
||||
ports:
|
||||
- "80:80"
|
||||
- "443:443"
|
||||
- "81:81"
|
||||
volumes:
|
||||
- ./data/npm:/data
|
||||
- ./data/ssl:/etc/letsencrypt
|
||||
environment:
|
||||
- DB_SQLITE_FILE=/data/database.db
|
||||
- DISABLE_IPV6=true
|
||||
restart: unless-stopped
|
Loading…
Reference in New Issue
Block a user