An Application dashboard and launcher
Go to file
Isaac McDonald 7a3912767b
Document adding a supported application
If you type the name of a supported application quickly enough in the title field, you'll never see the option to select that application from the list. Long term I think this needs to be addressed. In the short term, an explanation will suffice.
2018-03-21 07:52:47 -07:00
app Merge branch 'master' into patch-3 2018-03-21 12:59:21 +00:00
bootstrap First commit 2018-01-26 14:35:01 +00:00
config closes #128 2018-03-11 17:47:05 +00:00
css folder support 2018-02-17 00:13:38 +00:00
database Update SettingsSeeder.php 2018-02-20 11:51:18 +00:00
public closes #122, closes #82, 2018-03-05 19:38:23 +00:00
resources Merge pull request #133 from albertsj1/couchpotato 2018-03-17 13:18:03 +00:00
routes folder support 2018-02-17 00:13:38 +00:00
storage Merge branch 'master' into patch-3 2018-03-21 12:59:21 +00:00
tests First commit 2018-01-26 14:35:01 +00:00
vendor Add Enhanced App Transmission 2018-03-08 16:18:39 -08:00
.env added settings 2018-02-04 20:50:59 +00:00
.env.example First commit 2018-01-26 14:35:01 +00:00
.gitattributes First commit 2018-01-26 14:35:01 +00:00
.gitignore feat(.gitignore): added MacOS generated files to ignore 2018-02-15 19:23:57 +01:00
_config.yml Set theme jekyll-theme-tactile 2018-02-06 10:14:43 +00:00
artisan First commit 2018-01-26 14:35:01 +00:00
CHANGELOG.md closes #46, #47, #77, #89 2018-02-18 17:48:52 +00:00
composer.json fixes for nzbget 2018-02-08 18:53:52 +00:00
composer.lock updated dependencies + working api connection 2018-02-08 14:21:29 +00:00
LICENSE Create LICENSE 2018-02-06 13:58:54 +00:00
mix-manifest.json folder support 2018-02-17 00:13:38 +00:00
package-lock.json folder support 2018-02-17 00:13:38 +00:00
package.json folder support 2018-02-17 00:13:38 +00:00
phpunit.xml First commit 2018-01-26 14:35:01 +00:00
readme.md Document adding a supported application 2018-03-21 07:52:47 -07:00
server.php First commit 2018-01-26 14:35:01 +00:00
webpack.mix.js added order saving, dragging and pinning 2018-02-03 00:22:42 +00:00

alt text


Discord Docker Pulls firsttimersonly

Paypal


Visit the website - https://heimdall.site


About

As the name suggests Heimdall Application Dashboard 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. Its dedicated to this purpose so you wont lose your links in a sea of bookmarks.

Why not use it as your browser start page? It even has the ability to include a search bar using either Google, Bing or DuckDuckGo.

alt text

Video

If you want to see a quick video of it in use, go to https://youtu.be/GXnnMAxPzMc

Supported applications

You can use the app to link to any site or application, but Foundation apps will auto fill in the icon for the app and supply a default color for the tile. In addition Enhanced apps allow you provide details to an apps API, allowing you to view live stats directly on the dashboad. For example, the NZBGet and Sabnzbd Enhanced apps will display the queue size and download speed while something is downloading.

Supported applications are recognized by the title of the application as entered in the title field when adding an application. For example, to add a link to pfSense, begin by typing "p" in the title field and then select "pfSense" from the list of supported applications.

Enhanced

  • CouchPotato
  • NZBGet
  • Pihole
  • PlexPy
  • Proxmox
  • Runeaudio
  • Sabnzbd
  • Tautulli
  • Transmission

Foundation

  • AirSonic
  • Deluge
  • DokuWiki
  • Duplicati
  • Emby
  • Gitea
  • Graylog
  • Jdownloader
  • Krusader
  • Lidarr
  • McMyAdmin
  • Medusa
  • NZBhydra & NZBhydra2
  • Netdata
  • Nextcloud
  • Ombi
  • OpenHAB
  • OpenMediaVault
  • Plex
  • Plexrequests
  • Portainer
  • Radarr
  • SickRage
  • Sonarr
  • TT-RSS
  • Traefik
  • UniFI
  • pfSense
  • rTorrent/ruTorrent
  • Watcher3
  • WebTools

Installing

Apart from the Laravel dependencies, namely PHP >= 7.0.0, OpenSSL PHP Extension, PDO PHP Extension, Mbstring PHP Extension, Tokenizer PHP Extension and XML PHP Extension, the only other thing Heimdall needs is sqlite support.

Installation is as simple as cloning the repository somewhere, or downloading and extracting the zip/tar and pointing your httpd document root to the /public folder. For simple testing you could just go to the folder and type php artisan serve

There are also dockers and instructions on how to use them at

for x86-64: https://hub.docker.com/r/linuxserver/heimdall/

for armhf: https://hub.docker.com/r/lsioarmhf/heimdall/

and for arm64: https://hub.docker.com/r/lsioarmhf/heimdall-aarch64/

Languages

The app has been translated into several languages, however the quality of the translations could do with work, if you would like to improve them or help with other translations they are stored in /resources/lang/

To create a new one, create a new folder with the ISO 3166-1 alpha-2 code as the name, copy app.php from /resources/lang/en/app.php into your new folder and replace the english strings.

When you are finished create a pull request.

Currently added languages are

  • English
  • German
  • Finnish
  • French
  • Swedish
  • Spanish
  • Turkish

Web Server Configuration

Apache

A .htaccess file ships with the app, however, if it does not work with your Apache installation, try this alternative:

Options +FollowSymLinks
RewriteEngine On

RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [L]

Nginx

If you are using Nginx, the following directive in your site configuration will direct all requests to the index.php front controller:

location / {
    try_files $uri $uri/ /index.php?$query_string;
}

Someone was using the same nginx setup to both run this and reverse proxy Plex, Plex is served from /web so their location was interferring with the /webfonts.

Therefore, if your fonts aren't showing because you have a location for /web add the following

location /webfonts {
     try_files $uri $uri/;
}

If there are any other locations which might interefere with any of the folders in the /public folder, you might have to do the same for those as well, but it's a super fringe case.

Reverse proxy

If you'd like to reverse proxy this app, we recommend using our letsencrypt/nginx docker image: Letsencrypt/Nginx
You can either reverse proxy from the root location, or from a subdomain (subfolder method is currently not supported). For https proxy, make sure you use the https port of Heimdall webserver, otherwise some links may break. You can add security through .htpasswd

location / {
    auth_basic "Restricted";
    auth_basic_user_file /config/nginx/.htpasswd;
    include /config/nginx/proxy.conf;
    proxy_pass https://heimdall:443;
}

Self-signed certificates and local CAs

Per default Heimdall uses the standard certificate bundle file (ca-certificates.crt) to verify HTTPS sites and will ignore additional certificates placed in /etc/ssl/certs. If you wish to use enhanced apps with HTTPS sites that use a self-signed certificate or certs signed with your own local CA, you can override the default bundle:

  • Create a unified certificate .pem-file that contains all CAs and certificates that Heimdall has to verify. For example, if you use both LetsEncrypt and a local CA for your internal apps, concatenate the LetsEncrypt intermediate CA (export via browser) and your local CA cert.pem (or any number of self-signed certs) into one heimdall.pem file.
  • Place the heimdall.pem into the container (if you use Docker), for example by placing it in the path that you mapped to /config. Make sure that the Heimdall user has read access (chmod a+r).
  • Set the openssl.cafile setting in /config/php/php-local.ini to your cert bundle:
# /config/php/php-local.ini
openssl.cafile = /config/heimdall.pem

Restart the container and the enhanced apps should now be able to access your local HTTP websites. This configuration will survive updating or recreating the Heimdall container.

Support

https://discord.gg/CCjHKn4 or through Github issues

Donate

If you would like to show your appreciation, feel free to use the link below.

Paypal

Credits

  • PHP Framework - Laravel
  • Icons - FonteAwesome 5
  • Javascript - jQuery
  • Colour picker - Huebee
  • Background image - pexels
  • Everyone at Linuxserver.io that has helped with the app and let's not forget IronicBadger for the following question that started it all:
you know, i would love something like this landing page for all my servers apps
that gives me the ability to pin favourites
and / or search
@Stark @Kode do either of you think you'd be able to rustle something like this up ?

License

This app is open-sourced software licensed under the MIT license.