Jamie Curnow a882b0be82 Merge branch 'develop' of github.com:jc21/nginx-proxy-manager into develop %!s(int64=5) %!d(string=hai) anos
..
.vuepress 256bd2336f v2.2.0 New Brand (#319) %!s(int64=5) %!d(string=hai) anos
advanced-config bdb591af9e - Add ability to disable ipv6, fixes #312 %!s(int64=5) %!d(string=hai) anos
guide 256bd2336f v2.2.0 New Brand (#319) %!s(int64=5) %!d(string=hai) anos
screenshots 256bd2336f v2.2.0 New Brand (#319) %!s(int64=5) %!d(string=hai) anos
setup bdb591af9e - Add ability to disable ipv6, fixes #312 %!s(int64=5) %!d(string=hai) anos
third-party 256bd2336f v2.2.0 New Brand (#319) %!s(int64=5) %!d(string=hai) anos
.gitignore 256bd2336f v2.2.0 New Brand (#319) %!s(int64=5) %!d(string=hai) anos
README.md 256bd2336f v2.2.0 New Brand (#319) %!s(int64=5) %!d(string=hai) anos
package.json db7bbab768 Updated npm deps %!s(int64=5) %!d(string=hai) anos
yarn.lock db7bbab768 Updated npm deps %!s(int64=5) %!d(string=hai) anos

README.md


home: true heroImage: /logo.png actionText: Get Started → actionLink: /guide/

footer: MIT Licensed | Copyright © 2016-present jc21.com

Get Connected

Expose web services on your network · Free SSL with Let's Encrypt · Designed with security in mind · Perfect for home networks

Proxy Hosts

Expose your private network Web services and get connected anywhere.

Beautiful UI

Based on Tabler, the interface is a pleasure to use. Configuring a server has never been so fun.

Free SSL

Built in Let’s Encrypt support allows you to secure your Web services at no cost to you. The certificates even renew themselves!

Docker FTW

Built as a Docker Image, Nginx Proxy Manager only requires a database.

Multiple Users

Configure other users to either view or manage their own hosts. Full access permissions are available.

Quick Setup

  1. Install Docker and Docker-Compose
  1. Create a docker-compose.yml file similar to this:

    version: '3'
    services:
    app:
    image: 'jc21/nginx-proxy-manager:latest'
    ports:
      - '80:80'
      - '81:81'
      - '443:443'
    volumes:
      - ./config.json:/app/config/production.json
      - ./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
    
  2. Bring up your stack

    docker-compose up -d
    
  3. Log in to the Admin UI

When your docker container is running, connect to it on port 81 for the admin interface.

http://127.0.0.1:81

Default Admin User:

Email:    [email protected]
Password: changeme

Immediately after logging in with this default user you will be asked to modify your details and change your password.