2020-03-11 02:54:10 -04:00
|
|
|
|
---
|
|
|
|
|
home: true
|
|
|
|
|
heroImage: /logo.png
|
|
|
|
|
actionText: Get Started →
|
|
|
|
|
actionLink: /guide/
|
|
|
|
|
footer: MIT Licensed | Copyright © 2016-present jc21.com
|
|
|
|
|
---
|
|
|
|
|
|
|
|
|
|
<div class="features">
|
|
|
|
|
<div class="feature">
|
|
|
|
|
<h2>Get Connected</h2>
|
|
|
|
|
<p>
|
|
|
|
|
Expose web services on your network ·
|
|
|
|
|
Free SSL with Let's Encrypt ·
|
|
|
|
|
Designed with security in mind ·
|
|
|
|
|
Perfect for home networks
|
|
|
|
|
</p>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="feature">
|
|
|
|
|
<h2>Proxy Hosts</h2>
|
|
|
|
|
<p>Expose your private network Web services and get connected anywhere.</p>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="feature">
|
|
|
|
|
<h2>Beautiful UI</h2>
|
|
|
|
|
<p>Based on Tabler, the interface is a pleasure to use. Configuring a server has never been so fun.</p>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="feature">
|
|
|
|
|
<h2>Free SSL</h2>
|
|
|
|
|
<p>Built in Let’s Encrypt support allows you to secure your Web services at no cost to you. The certificates even renew themselves!</p>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="feature">
|
|
|
|
|
<h2>Docker FTW</h2>
|
|
|
|
|
<p>Built as a Docker Image, Nginx Proxy Manager only requires a database.</p>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="feature">
|
|
|
|
|
<h2>Multiple Users</h2>
|
|
|
|
|
<p>Configure other users to either view or manage their own hosts. Full access permissions are available.</p>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
### Quick Setup
|
|
|
|
|
|
|
|
|
|
1. Install Docker and Docker-Compose
|
|
|
|
|
|
|
|
|
|
- [Docker Install documentation](https://docs.docker.com/install/)
|
|
|
|
|
- [Docker-Compose Install documentation](https://docs.docker.com/compose/install/)
|
|
|
|
|
|
2020-11-07 07:24:01 -05:00
|
|
|
|
2. Create a docker-compose.yml file similar to this:
|
2020-03-11 02:54:10 -04:00
|
|
|
|
|
|
|
|
|
```yml
|
|
|
|
|
version: '3'
|
|
|
|
|
services:
|
|
|
|
|
app:
|
|
|
|
|
image: 'jc21/nginx-proxy-manager:latest'
|
|
|
|
|
ports:
|
|
|
|
|
- '80:80'
|
|
|
|
|
- '81:81'
|
|
|
|
|
- '443:443'
|
2020-11-07 07:24:01 -05:00
|
|
|
|
environment:
|
|
|
|
|
DB_MYSQL_HOST: "db"
|
|
|
|
|
DB_MYSQL_PORT: 3306
|
|
|
|
|
DB_MYSQL_USER: "npm"
|
|
|
|
|
DB_MYSQL_PASSWORD: "npm"
|
|
|
|
|
DB_MYSQL_NAME: "npm"
|
2020-03-11 02:54:10 -04:00
|
|
|
|
volumes:
|
|
|
|
|
- ./data:/data
|
|
|
|
|
- ./letsencrypt:/etc/letsencrypt
|
|
|
|
|
db:
|
|
|
|
|
image: 'jc21/mariadb-aria:10.4'
|
|
|
|
|
environment:
|
|
|
|
|
MYSQL_ROOT_PASSWORD: 'npm'
|
|
|
|
|
MYSQL_DATABASE: 'npm'
|
|
|
|
|
MYSQL_USER: 'npm'
|
|
|
|
|
MYSQL_PASSWORD: 'npm'
|
|
|
|
|
volumes:
|
|
|
|
|
- ./data/mysql:/var/lib/mysql
|
|
|
|
|
```
|
|
|
|
|
|
2020-11-07 07:24:01 -05:00
|
|
|
|
3. Bring up your stack
|
2020-03-11 02:54:10 -04:00
|
|
|
|
|
|
|
|
|
```bash
|
|
|
|
|
docker-compose up -d
|
|
|
|
|
```
|
|
|
|
|
|
2020-11-07 07:24:01 -05:00
|
|
|
|
4. Log in to the Admin UI
|
2020-03-11 02:54:10 -04:00
|
|
|
|
|
|
|
|
|
When your docker container is running, connect to it on port `81` for the admin interface.
|
2020-04-11 07:03:15 -04:00
|
|
|
|
Sometimes this can take a little bit because of the entropy of keys.
|
2020-03-11 02:54:10 -04:00
|
|
|
|
|
|
|
|
|
[http://127.0.0.1:81](http://127.0.0.1:81)
|
|
|
|
|
|
|
|
|
|
Default Admin User:
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
Email: admin@example.com
|
|
|
|
|
Password: changeme
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
Immediately after logging in with this default user you will be asked to modify your details and change your password.
|