Files

112 lines
4.3 KiB
Markdown
Raw Permalink Normal View History

2020-03-12 08:43:50 +10:00
<p align="center">
2020-05-25 14:53:35 +10:00
<img src="https://nginxproxymanager.com/github.png">
<br><br>
2026-06-03 08:22:27 +10:00
<img src="https://img.shields.io/badge/version-2.15.1-green.svg?style=for-the-badge">
2020-05-25 14:53:35 +10:00
<a href="https://hub.docker.com/repository/docker/jc21/nginx-proxy-manager">
<img src="https://img.shields.io/docker/stars/jc21/nginx-proxy-manager.svg?style=for-the-badge">
</a>
<a href="https://hub.docker.com/repository/docker/jc21/nginx-proxy-manager">
<img src="https://img.shields.io/docker/pulls/jc21/nginx-proxy-manager.svg?style=for-the-badge">
</a>
2020-03-12 08:43:50 +10:00
</p>
2020-02-19 15:55:06 +11:00
2026-03-25 02:33:16 -04:00
This project comes as a pre-built Docker image that enables you to easily forward to your websites
2017-12-21 09:02:37 +10:00
running at home or otherwise, including free SSL, without having to know too much about Nginx or Letsencrypt.
- [Quick Setup](#quick-setup)
2020-03-11 16:54:10 +10:00
- [Full Setup](https://nginxproxymanager.com/setup/)
- [Screenshots](https://nginxproxymanager.com/screenshots/)
2019-11-29 09:30:34 +10:00
2019-01-03 21:05:00 +10:00
## Project Goal
2024-02-04 18:50:50 +09:00
I created this project to fill a personal need to provide users with an easy way to accomplish reverse
2026-03-25 02:33:16 -04:00
proxying hosts with SSL termination, and it had to be so easy that a monkey could do it. This goal hasn't changed.
While there might be advanced options, they are optional, and the project should be as simple as possible
so that the barrier to entry here is low.
2018-08-21 08:33:51 +10:00
2019-11-29 09:46:41 +10:00
<a href="https://www.buymeacoffee.com/jc21" target="_blank"><img src="http://public.jc21.com/github/by-me-a-coffee.png" alt="Buy Me A Coffee" style="height: 51px !important;width: 217px !important;" ></a>
2019-11-29 09:30:34 +10:00
2018-08-21 08:33:51 +10:00
2017-12-21 09:02:37 +10:00
## Features
2018-08-01 10:21:49 +10:00
- Beautiful and Secure Admin Interface based on [Tabler](https://tabler.github.io/)
2026-03-25 02:33:16 -04:00
- Easily create forwarding domains, redirections, streams, and 404 hosts without knowing anything about Nginx
2019-11-29 09:30:34 +10:00
- Free SSL using Let's Encrypt or provide your own custom SSL certificates
2018-08-01 10:21:49 +10:00
- Access Lists and basic HTTP Authentication for your hosts
2018-08-24 16:59:03 +10:00
- Advanced Nginx configuration available for super users
2026-03-25 02:33:16 -04:00
- User management, permissions, and audit log
2017-12-21 09:02:37 +10:00
::: warning
`armv7` is no longer supported in version 2.14+. This is due to Nodejs dropping support for armhf. Please
use the `2.13.7` image tag if this applies to you.
:::
2017-12-21 09:02:37 +10:00
## Hosting your home network
2026-03-25 02:33:16 -04:00
I won't go into too much detail here, but here are the basics for someone new to this self-hosted world.
2017-12-21 09:02:37 +10:00
1. Your home router will have a Port Forwarding section somewhere. Log in and find it
2026-03-25 02:33:16 -04:00
2. Add port forwarding for ports 80 and 443 to the server hosting this project
3. Configure your domain name details to point to your home, either with a static ip or a service like
- DuckDNS
- [Amazon Route53](https://github.com/jc21/route53-ddns)
- [Cloudflare](https://github.com/jc21/cloudflare-ddns)
2026-03-25 02:33:16 -04:00
4. Use the Nginx Proxy Manager as your gateway to forward to your other web-based services
2020-05-25 14:53:35 +10:00
## Quick Setup
1. [Install Docker](https://docs.docker.com/install/)
2. Create a docker-compose.yml file similar to this:
```yml
services:
app:
2024-02-25 22:38:50 +01:00
image: 'docker.io/jc21/nginx-proxy-manager:latest'
2021-06-07 09:38:45 -05:00
restart: unless-stopped
ports:
- '80:80'
- '81:81'
- '443:443'
volumes:
- ./data:/data
- ./letsencrypt:/etc/letsencrypt
```
This is the bare minimum configuration required. See the [documentation](https://nginxproxymanager.com/setup/) for more.
3. Bring up your stack by running
```bash
2022-10-02 05:05:46 +00:00
docker compose up -d
```
4. Log in to the Admin UI
When your docker container is running, connect to it on port `81` for the admin interface.
Sometimes this can take a little bit because of the entropy of keys.
[http://127.0.0.1:81](http://127.0.0.1:81)
2020-05-25 14:53:35 +10:00
2024-01-09 08:36:32 +10:00
## Contributing
All are welcome to create pull requests for this project, against the `develop` branch. Official releases are created from the `master` branch.
CI is used in this project. All PR's must pass before being considered. After passing,
docker builds for PR's are available on dockerhub for manual verifications.
Documentation within the `develop` branch is available for preview at
[https://develop.nginxproxymanager.com](https://develop.nginxproxymanager.com)
### Contributors
2020-05-25 14:53:35 +10:00
Special thanks to [all of our contributors](https://github.com/NginxProxyManager/nginx-proxy-manager/graphs/contributors).
## Getting Support
1. [Found a bug?](https://github.com/NginxProxyManager/nginx-proxy-manager/issues)
2. [Discussions](https://github.com/NginxProxyManager/nginx-proxy-manager/discussions)
2024-01-09 08:36:32 +10:00
3. [Reddit](https://reddit.com/r/nginxproxymanager)