mirror of
https://github.com/tborychowski/self-hosted-cookbook.git
synced 2025-06-27 05:05:24 +00:00
add nginx-proxy-manager
This commit is contained in:
parent
77917d4f3c
commit
689bc99c82
@ -121,6 +121,7 @@ The aims is to provide a ready-to-run recipes that you can just copy, paste and
|
||||
|
||||
# Docker Managers
|
||||
- [Diun](apps/docker/diun.md)
|
||||
- [nginx-proxy-manager](apps/docker/npm.md)
|
||||
- [WatchTower](apps/docker/watch-tower.md)
|
||||
|
||||
|
||||
|
32
apps/docker/npm.md
Normal file
32
apps/docker/npm.md
Normal file
@ -0,0 +1,32 @@
|
||||
# nginx-proxy-manager
|
||||
|
||||
- it's basically a very nice UI for nginx reverse-proxy
|
||||
- a very nice UI
|
||||
- making it extremely easy to use nginx
|
||||
|
||||
<br>
|
||||
|
||||
- [Github repo](https://github.com/jc21/nginx-proxy-manager)
|
||||
- [Homepage](https://nginxproxymanager.com/guide/#quick-setup)
|
||||
|
||||
|
||||
|
||||
## docker-compose.yml
|
||||
```yml
|
||||
---
|
||||
services:
|
||||
app:
|
||||
image: 'jc21/nginx-proxy-manager:latest'
|
||||
restart: unless-stopped
|
||||
ports:
|
||||
- '80:80'
|
||||
- '81:81'
|
||||
- '443:443'
|
||||
volumes:
|
||||
- ./data:/data
|
||||
- ./letsencrypt:/etc/letsencrypt
|
||||
```
|
||||
|
||||
Login with:
|
||||
- Email: admin@example.com
|
||||
- Password: changeme
|
Loading…
Reference in New Issue
Block a user