WIP fork of redirect_ynh
Find a file
2021-06-04 16:26:34 +02:00
.github Add templates 2021-06-04 16:26:13 +02:00
conf Add X-Forwarded-Port header 2017-06-15 16:38:09 +02:00
doc Add templates 2021-06-04 16:26:13 +02:00
scripts Fix linter warnings 2021-01-23 15:21:17 +01:00
check_process Add templates 2021-06-04 16:26:13 +02:00
LICENSE Add AGPL3+ licence and improve manifest 2018-05-26 10:27:44 +02:00
manifest.json Update manifest.json 2021-06-04 16:26:34 +02:00
README.md Fix linter warnings 2021-01-23 15:21:17 +01:00

Redirect App for Yunohost

Integration level
Install Redirect with YunoHost

Add a link on your user panel redirecting to another page or app, which can be protected behind your panel for some.

It could be an invisible redirect, an external link, another app on your local network, a reverse proxy to an app or a Docker container... Some apps can be even be protected behind your panel (meaning that you will have to log-in to access them). The only limit is your imagination - and NGINX ;).

This app only adds a Nginx configuration file with redirect or proxy_pass rule, and a YunoHost tile. Nothing more.

Redirect type

Visible redirect

Visitor's address bar will change. Helpfull to add a user link to another website

you-domain.com -> another-domain.net
you-domain.com/foo -> another-domain.net/bar

Invisible (proxy) redirect

Visitor's address bar will remain the same. Mostly use to serve local webserver for a personnal application.

you-domain.com/foo -> http://172.0.0.1:8080/app

IMPORTANT: the redirect.conf file might need to be updated according to your situation!

WARNING: Many apps do not support being redirected to a different path due to relative links! This means that some apps being hosted for example on http://127.0.0.1:5050/app/ HAVE TO be redirected to http://domain.tld/app/ and NOT http://domain.tld/someotherapp/

Concrete example: the Odoo Docker container runs on http://127.0.0.1:8069/. You will not be able to redirect it to http://domain.tld/odoo/ ! You have to redirect it to the root, so for example http://odoo.domain.tld/

Public or private redirect

In case of a private redirect, the app will be available to logged in users only. This could be useful if you want to protect behind the SSO an app from your local network or from the server (e.g., a Docker container or an app that does not have user management or password protection).

IMPORTANT: Make sure that the app you want to protect CANNOT be accessed by its port or another direct link. Otherwise, your app will only be protected in YunoHost but would still be available through its direct link. In the case of a Docker container, the port of the container will have to be local (e.g., -p 127.0.0.1:9000:9000).

Case examples

  • Creating a tile for a Docker container with a local port (e.g., -p 127.0.0.1:PORT:PORT): proxy redirect to http://127.0.0.1:PORT-OF-THE-CONTAINER/

  • Redirecting to an external website: visible redirect to the URL

  • CozyCloud behind YunoHost?

  • Creating a tile and protecting apps that are difficult to package natively (or for prototyping)

Feel free to share your case examples and customized Nginx files on the forum.

Credits

Insprired by scith work.