mirror of
https://github.com/vimagick/dockerfiles.git
synced 2025-12-21 21:33:02 +01:00
add nginx-proxy-manager
This commit is contained in:
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
|
||||
Reference in New Issue
Block a user