====== Systems - Media Server - Setup Nginx Proxy Manager ======
===== Bring up the mediaserver docker stack =====
docker compose -f docker-compose-mediaserver.yml up -d --remove-orphans
**NOTE:** This should bring start the Nginx Proxy Manager.
----
===== Verify that the mediaserver docker stack is up =====
docker ps
returns
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
939c78ee2e82 jc21/nginx-proxy-manager:latest "/init" 37 hours ago Up 37 hours 0.0.0.0:80-81->80-81/tcp, [::]:80-81->80-81/tcp, 0.0.0.0:443->443/tcp, [::]:443->443/tcp nginx-proxy-manager
b81cc20347c2 lscr.io/linuxserver/socket-proxy:latest "/docker-entrypoint.…" 37 hours ago Up 37 hours socket-proxy
**NOTE:** This shows that both the **Nginx Proxy Manager** and **Socket Proxy** are running.
----
===== Log in to the Nginx Proxy Manager 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://192.168.1.85:81
Default Admin User:
Email: admin@example.com
Password: changeme
**NOTE:** Immediately after logging in with this default user you will be asked to modify your details and change your password.
----