Skip to content

Latest commit

 

History

History
192 lines (108 loc) · 9.7 KB

nginx_proxy_manager.md

File metadata and controls

192 lines (108 loc) · 9.7 KB

Install and setup instructions for Nginx Proxy Manager (NPM)

Introduction

Nginx Proxy Manager (NPM) is an easy way to accomplish reverse proxying hosts with SSL termination and as the author puts it "It has to be so easy that a monkey could do it".

Screenshot

NPM Screenshot

Installation

Pre-Installation Steps

Folder Setup Script

First thing we need to do is setup the folder structure and install some files that need to be in place for everything to work correctly.

Run the following script

wget -qO- https://git.io/JPXF5 | sudo bash

Your output should look something like this

# wget -qO- https://git.io/JPXF5 | sudo bash
Creating directories...
Creating a blank nginx-proxy-manager config files
Setup complete. You can now install the stack using the App Template.



Install the App Template.

App Template

Goto App Templates and install "Proxy Nginx Manager"

App Template

You need to enter in both a Database Password and Mysql Root Password. These will be needed if you ever have to access the database but not needed in the day to day operations of the system.

If you fail to enter password for both the Database Password and Mysql Root Password your install will fail and you will get an error Bad Gateway which means that NPM can't talk to your mysql server.

This should all be good now so Deploy the Stack

This will take several minutes to Deploy.

Stack Info

When Complete we should see a list of all our deployed stacks sample list below.
Stack List

We want to select nginx-proxy-manager from the list. This will display lots of information regarding your stack but the section we are looking for is labelled Containers

Stack Container Details

You will notice 3 ports listed. Port 80, 443, and port 81. Ports 80 and 443 are for managing your services and really shouldn't be changed. Port 81 is for managing your lists of hosts. It can be changed but for the reminder of this install we are going to assume it to be port 81.

It is important before you go to the next step that you get you public IP forward though your firewall for port 80 and 443 to your NPM install. You also need to have your DNS pointing at the IP address. There are many ways to do this and outside the scope of this install document. If you are not sure where to start feel free to login to the Discord chat and ask someone will help point you at different options for your setup.

Post Install Setup

Login to the site

Now that it is installed lets setup our first proxy host. First thing we need to do is login to the site. Click on port 81 in the list and you will see the login screen below.

Login

The Default Email Address is: [email protected] The Default Password is: changeme

Please login and we will then change those to our own settings.

If you get a Bad Gateway error you likely forgot to run the script on the host to setup the folders / files first although it can also happen if you leave one of the database password blank as well. Delete the Stack and start back from the beginning.

First Login

Update Your Email address and Password

First we need to select the User menu and select Edit Details

User Menu

Fix your user information and save the changes.

User Menu

Now it is time to change your password. Select the User menu again and select Change Password
User Menu

Set the password to something you like and save the changes.

User Menu

Update Default Screen

When going to the proxy with a new domain or in some cases where you used *wildcard DNS and someone goes using a DNS you don't haven't setup yet they will see the default screen. By default this is the Congratulations Screen as shown below. It is useful for confirming you are setup correctly but in production I prefer a 404 page or a custom page of some kind so we will go though how to set that up.

  • Wildcard DNS can have security issues make sure you reach these before using them.

Congratulations Screen

We start by going to the Settings Tab

Settings Screen

Click on the 3 dots and select Edit from the list.

3 Dots Screen

You will now be shown the different options you can select for your default screen. You can have it display a 404 page, a Custom Page, or do simply redirect depending on your preference. This is entirely up to you. I prefer to use a 404 screen so I am going to set that now.

Setting Edit Screen

There we are with the default being a 404 page.

Settings Screen with 404

So now when someone goes to a site that isn't setup yet they will see a 404 page.

404 Page

Great Nginx Proxy Manager is now all setup. In the next sections we are going to walk though setting up your first proxy host.

First Proxy Host Setup

We are now back to the first login screen. First Login

Select Hosts > Proxy Hosts

Proxy Hosts

Select Add Proxy Hosts

Proxy Hosts

We need to enter the proxy information. In this example we are going to use the following information.

Secure External connections to the service using https.
Domain Name: homer.example.com
Scheme: http
Forward Hostname/IP address: 192.168.1.23
Port: 8902
Cache Assets: Disabled
Block Common Exploits: Disabled
Websockets Support: Disabled
Accesss List: Publicly Accessible

Most of these options should be self explanatory if you aren't sure what they do it is likely best to leave them disabled.

The most import options.

Domain Name is the public Domain name that will point at your host.
Forward Hostname/IP is the server running the resource.
Port is the port the service is running on that server.

Two options you might want to enable are Cache Assets and Block Common Exploits they will help protect and reduce the load on your sites but they can cause problems for some sites so be aware of this before enabling.

Some applications will use Websockets if the app uses this you will need to enable it but very few applications do so. To put it simply if you don't know what it is, than leave it disabled.

Proxy Hosts

Hint: Generating Certificates can be complicated I will be outlining one of the simplest ways to generate one. There are other ways not outlined here.

Now we need to setup our secure https connection to the server. Select the SSL tab. Under SSL Certificates we are going to select Request a new SSL Certificate

I am also going to select Force SSL this will prevent non-secure connections from being used.

I will agree to the terms after reading them you should at least review them once so you understand the terms of service.

It should have your correct email address listed if it doesn't please fix as this is where you will get alerts if there is an issue with the Certificate.

Proxy Hosts

Once you click Save it will generate a new certificate this can take a few minutes to do.

Assuming there are no errors your new host has been created and you will be returned to the proxy host screen. Below is an example of what the screen will look like with several hosts added.

NPM Screenshot

Pi Hosted : Nginx Proxy Manager Part 11

Installing Nginx Proxy Manager on Docker

Additional documentation

Additional documentation can be found at https://nginxproxymanager.com/guide/ .