mirror of
https://github.com/funkypenguin/geek-cookbook/
synced 2025-12-13 01:36:23 +00:00
55 lines
2.2 KiB
Markdown
55 lines
2.2 KiB
Markdown
---
|
||
description: Heimdall is a beautiful dashboard for all your web applications
|
||
---
|
||
# Heimdall
|
||
|
||
!!! warning
|
||
This is not a complete recipe - it's a component of the [autopirate](/recipes/autopirate/) "_uber-recipe_", but has been split into its own page to reduce complexity.
|
||
|
||
[Heimdall Application Dashboard](https://heimdall.site/) is a dashboard for all your web applications. It doesn't need to be limited to applications though, you can add links to anything you like.
|
||
|
||
Heimdall is an elegant solution to organise all your web applications. It’s dedicated to this purpose so you won’t lose your links in a sea of bookmarks.
|
||
|
||
Heimdall provides a single URL to manage access to all of your autopirate tools, and includes "enhanced" (_i.e., display stats within Heimdall without launching the app_) access to [NZBGet][nzbge], [SABnzbd][nzbget], and friends.
|
||
|
||

|
||
|
||
## Inclusion into AutoPirate
|
||
|
||
To include Heimdall in your [AutoPirate](/recipes/autopirate/) stack, include the following in your autopirate.yml stack definition file:
|
||
|
||
```yaml
|
||
heimdall:
|
||
image: linuxserver/heimdall:latest
|
||
env_file: /var/data/config/autopirate/heimdall.env
|
||
volumes:
|
||
- /etc/localtime:/etc/localtime:ro
|
||
- /var/data/heimdall:/config
|
||
networks:
|
||
- internal
|
||
deploy:
|
||
labels:
|
||
# traefik
|
||
- traefik.enable=true
|
||
- traefik.docker.network=traefik_public
|
||
|
||
# traefikv1
|
||
- traefik.frontend.rule=Host:heimdall.example.com
|
||
- traefik.port=80
|
||
- traefik.frontend.auth.forward.address=http://traefik-forward-auth:4181
|
||
- traefik.frontend.auth.forward.authResponseHeaders=X-Forwarded-User
|
||
- traefik.frontend.auth.forward.trustForwardHeader=true
|
||
|
||
# traefikv2
|
||
- "traefik.http.routers.heimdall.rule=Host(`heimdall.example.com`)"
|
||
- "traefik.http.routers.heimdall.entrypoints=https"
|
||
- "traefik.http.services.heimdall.loadbalancer.server.port=80"
|
||
- "traefik.http.routers.heimdall.middlewares=forward-auth"
|
||
```
|
||
|
||
--8<-- "premix-cta.md"
|
||
--8<-- "recipe-autopirate-toc.md"
|
||
--8<-- "recipe-footer.md"
|
||
|
||
[^2:] The inclusion of Heimdall was due to the efforts of @gkoerk in our [Discord server](http://chat.funkypenguin.co.nz). Thanks gkoerk!
|