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:
commit
df498ca0bf
2 changed files with 14 additions and 10 deletions
20
README_fr.md
20
README_fr.md
|
@ -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 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)
|
||||||
[![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 d’installer 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 n’avez pas YunoHost, regardez [ici](https://yunohost.org/#/install) pour savoir comment l’installer et en profiter.*
|
||||||
|
|
||||||
## Vue d'ensemble
|
## Vue d’ensemble
|
||||||
|
|
||||||
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 l’app : <https://fider.io>
|
||||||
* Documentation officielle de l'admin : <https://fider.io/docs>
|
* Documentation officielle de l’admin : <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 l’app : <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 d’infos sur le packaging d’applications :** <https://yunohost.org/packaging_apps>
|
|
@ -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;
|
||||||
|
|
Loading…
Reference in a new issue