wiki-grav/pages/02.linux/unmanic/default.en.md

34 lines
728 B
Markdown
Raw Normal View History

2023-05-29 20:08:57 +02:00
---
title: Unmanic
visible: false
---
[toc]
## Networking
```
8888: Port for Webinterface
```
2023-05-29 20:08:57 +02:00
## Installation
```
podman run -itd \
--name unmanic \
-e PUID=0 \
-e PGID=0 \
-p 8888:8888 \
-v /mnt/unmanic/config:/config \
-v /mnt/unmanic/medialib:/medialib \
-v /mnt/unmanic/cache:/tmp/unmanic \
2023-05-29 20:08:57 +02:00
docker.io/josh5/unmanic:latest
```
## Authentication
> [nginx basic auth](https://docs.nginx.com/nginx/admin-guide/security-controls/configuring-http-basic-authentication/)
Unmanic does not have any authentication built in. However, it does support basic authentication for remote servers.
To use basic auth however, a webserver has to be configured through which Unmanic will be accessed.