2020-03-11 02:54:10 -04:00
# Full Setup Instructions
2018-07-31 20:04:34 -04:00
### Configuration File
**The configuration file needs to be provided by you!**
Don't worry, this is easy to do.
2020-04-06 20:43:19 -04:00
The app requires a configuration file to let it know what database you're using. By default, this file is called `config.json`
2018-07-31 20:04:34 -04:00
2019-05-10 01:26:12 -04:00
Here's an example configuration for `mysql` (or mariadb) that is compatible with the docker-compose example below:
2018-07-31 20:04:34 -04:00
```json
{
"database": {
"engine": "mysql",
2019-05-10 01:26:12 -04:00
"host": "db",
"name": "npm",
"user": "npm",
"password": "npm",
2018-07-31 20:04:34 -04:00
"port": 3306
}
}
```
2020-08-06 00:27:29 -04:00
Alternatively if you would like to use a Sqlite database file:
```json
{
"database": {
"engine": "knex-native",
"knex": {
"client": "sqlite3",
"connection": {
"filename": "/data/database.sqlite"
}
}
}
}
```
2019-05-10 01:26:12 -04:00
Once you've created your configuration file it's easy to mount it in the docker container.
2018-07-31 20:04:34 -04:00
**Note:** After the first run of the application, the config file will be altered to include generated encryption keys unique to your installation. These keys
affect the login and session management of the application. If these keys change for any reason, all users will be logged out.
2020-08-06 00:27:29 -04:00
### MySQL Database
2018-07-31 20:04:34 -04:00
2020-08-06 00:27:29 -04:00
If you opt for the MySQL configuration you will have to provide the database server yourself. You can also use MariaDB. Here are the minimum supported versions:
2019-05-10 01:26:12 -04:00
- MySQL v5.7.8+
- MariaDB v10.2.7+
It's easy to use another docker container for your database also and link it as part of the docker stack, so that's what the following examples
are going to use.
2018-07-31 20:04:34 -04:00
2020-03-11 02:54:10 -04:00
::: warning
When using a `mariadb` database, the NPM configuration file should still use the `mysql` engine!
:::
2019-05-10 01:26:12 -04:00
### Running the App
Via `docker-compose` :
2018-07-31 20:04:34 -04:00
```yml
version: "3"
services:
app:
2020-02-18 23:55:06 -05:00
image: jc21/nginx-proxy-manager:2
2018-07-31 20:04:34 -04:00
restart: always
2018-08-24 02:59:03 -04:00
ports:
2019-05-10 01:26:12 -04:00
# Public HTTP Port:
2020-03-11 02:54:10 -04:00
- '80:80'
2019-05-10 01:26:12 -04:00
# Public HTTPS Port:
2020-03-11 02:54:10 -04:00
- '443:443'
2019-05-10 01:26:12 -04:00
# Admin Web Port:
2020-03-11 02:54:10 -04:00
- '81:81'
2020-04-06 20:43:19 -04:00
environment:
# Uncomment this if IPv6 is not enabled on your host
# DISABLE_IPV6: 'true'
2018-07-31 20:04:34 -04:00
volumes:
2019-05-10 01:26:12 -04:00
# Make sure this config.json file exists as per instructions above:
2018-07-31 20:04:34 -04:00
- ./config.json:/app/config/production.json
- ./data:/data
- ./letsencrypt:/etc/letsencrypt
depends_on:
- db
db:
2020-03-11 02:54:10 -04:00
image: jc21/mariadb-aria:10.4
2018-07-31 20:04:34 -04:00
restart: always
environment:
2020-04-06 20:43:19 -04:00
MYSQL_ROOT_PASSWORD: 'npm'
MYSQL_DATABASE: 'npm'
MYSQL_USER: 'npm'
MYSQL_PASSWORD: 'npm'
2018-07-31 20:04:34 -04:00
volumes:
- ./data/mysql:/var/lib/mysql
```
2019-05-10 01:26:12 -04:00
Then:
2018-07-31 20:04:34 -04:00
```bash
2019-05-10 01:26:12 -04:00
docker-compose up -d
2018-07-31 20:04:34 -04:00
```
2020-04-01 23:44:24 -04:00
The config file (config.json) must be present in this directory.
2018-07-31 20:04:34 -04:00
2019-05-10 01:26:12 -04:00
### Running on Raspberry PI / ARM devices
2018-07-31 20:04:34 -04:00
2020-02-18 23:55:06 -05:00
The docker images support the following architectures:
- amd64
- arm64
- armv7
2018-07-31 20:04:34 -04:00
2020-02-18 23:55:06 -05:00
The docker images are a manifest of all the architecture docker builds supported, so this means
2019-05-10 01:26:12 -04:00
you don't have to worry about doing anything special and you can follow the common instructions above.
2019-02-18 06:14:26 -05:00
2020-05-20 07:14:00 -04:00
Check out the [dockerhub tags ](https://hub.docker.com/r/jc21/nginx-proxy-manager/tags )
2019-05-10 01:26:12 -04:00
for a list of supported architectures and if you want one that doesn't exist,
[create a feature request ](https://github.com/jc21/nginx-proxy-manager/issues/new?assignees=&labels=enhancement&template=feature_request.md&title= ).
Also, if you don't know how to already, follow [this guide to install docker and docker-compose ](https://manre-universe.net/how-to-run-docker-and-docker-compose-on-raspbian/ )
on Raspbian.
2018-08-20 18:33:51 -04:00
### Initial Run
After the app is running for the first time, the following will happen:
2020-03-11 02:54:10 -04:00
1. The database will initialize with table structures
2. GPG keys will be generated and saved in the configuration file
3. A default admin user will be created
2018-08-20 18:33:51 -04:00
This process can take a couple of minutes depending on your machine.
### Default Administrator 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.