1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/fider_ynh.git synced 2024-09-03 18:36:11 +02:00

Merge pull request #8 from YunoHost-Apps/testing

Fix issue : missing nginx headers
This commit is contained in:
Salamandar 2023-01-20 00:17:32 +01:00 committed by GitHub
commit df498ca0bf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 14 additions and 10 deletions

View file

@ -5,15 +5,15 @@ It shall NOT be edited by hand.
# Fider pour YunoHost # Fider pour YunoHost
[![Niveau d'intégration](https://dash.yunohost.org/integration/fider.svg)](https://dash.yunohost.org/appci/app/fider) ![Statut du fonctionnement](https://ci-apps.yunohost.org/ci/badges/fider.status.svg) ![Statut de maintenance](https://ci-apps.yunohost.org/ci/badges/fider.maintain.svg) [![Niveau dintégration](https://dash.yunohost.org/integration/fider.svg)](https://dash.yunohost.org/appci/app/fider) ![Statut du fonctionnement](https://ci-apps.yunohost.org/ci/badges/fider.status.svg) ![Statut de maintenance](https://ci-apps.yunohost.org/ci/badges/fider.maintain.svg)
[![Installer Fider avec YunoHost](https://install-app.yunohost.org/install-with-yunohost.svg)](https://install-app.yunohost.org/?app=fider) [![Installer Fider avec YunoHost](https://install-app.yunohost.org/install-with-yunohost.svg)](https://install-app.yunohost.org/?app=fider)
*[Read this readme in english.](./README.md)* *[Read this readme in english.](./README.md)*
> *Ce package vous permet d'installer Fider rapidement et simplement sur un serveur YunoHost. > *Ce package vous permet dinstaller Fider rapidement et simplement sur un serveur YunoHost.
Si vous n'avez pas YunoHost, regardez [ici](https://yunohost.org/#/install) pour savoir comment l'installer et en profiter.* Si vous navez pas YunoHost, regardez [ici](https://yunohost.org/#/install) pour savoir comment linstaller et en profiter.*
## Vue d'ensemble ## Vue densemble
Fider is a feedback portal that helps teams collect and prioritize customer feedback in one place, based on votes and ideas submitted. Fider is a feedback portal that helps teams collect and prioritize customer feedback in one place, based on votes and ideas submitted.
@ -30,9 +30,9 @@ Fider is a feedback portal that helps teams collect and prioritize customer feed
**Démo :** https://feedback.fider.io **Démo :** https://feedback.fider.io
## Captures d'écran ## Captures décran
![Capture d'écran de Fider](./doc/screenshots/screenshot.png) ![Capture décran de Fider](./doc/screenshots/screenshot.png)
## Avertissements / informations importantes ## Avertissements / informations importantes
@ -45,9 +45,9 @@ Fider is a feedback portal that helps teams collect and prioritize customer feed
## Documentations et ressources ## Documentations et ressources
* Site officiel de l'app : <https://fider.io> * Site officiel de lapp : <https://fider.io>
* Documentation officielle de l'admin : <https://fider.io/docs> * Documentation officielle de ladmin : <https://fider.io/docs>
* Dépôt de code officiel de l'app : <https://github.com/getfider/fider> * Dépôt de code officiel de lapp : <https://github.com/getfider/fider>
* Documentation YunoHost pour cette app : <https://yunohost.org/app_fider> * Documentation YunoHost pour cette app : <https://yunohost.org/app_fider>
* Signaler un bug : <https://github.com/YunoHost-Apps/fider_ynh/issues> * Signaler un bug : <https://github.com/YunoHost-Apps/fider_ynh/issues>
@ -63,4 +63,4 @@ ou
sudo yunohost app upgrade fider -u https://github.com/YunoHost-Apps/fider_ynh/tree/testing --debug sudo yunohost app upgrade fider -u https://github.com/YunoHost-Apps/fider_ynh/tree/testing --debug
``` ```
**Plus d'infos sur le packaging d'applications :** <https://yunohost.org/packaging_apps> **Plus dinfos sur le packaging dapplications :** <https://yunohost.org/packaging_apps>

View file

@ -2,6 +2,10 @@
location __PATH__/ { location __PATH__/ {
proxy_pass http://localhost:__PORT__; proxy_pass http://localhost:__PORT__;
proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Host $host:$server_port;
proxy_set_header X-Forwarded-Port $server_port;
# Include SSOWAT user panel. # Include SSOWAT user panel.
include conf.d/yunohost_panel.conf.inc; include conf.d/yunohost_panel.conf.inc;