mirror of
https://github.com/YunoHost-Apps/osticket_ynh.git
synced 2024-09-03 19:56:17 +02:00
commit
b10e34643e
4 changed files with 26 additions and 13 deletions
|
@ -17,7 +17,7 @@ If you don't have YunoHost, please consult [the guide](https://yunohost.org/#/in
|
|||
|
||||
osTicket is a widely-used open source support ticket system. It seamlessly integrates inquiries created via email, phone and web-based forms into a simple easy-to-use multi-user web interface. Manage, organize and archive all your support requests and responses in one place while providing your customers with accountability and responsiveness they deserve.
|
||||
|
||||
**Shipped version:** 1.17.2~ynh1
|
||||
**Shipped version:** 1.17.2~ynh2
|
||||
|
||||
**Demo:** http://www.ostickethacks.com/demo/demo_info.php
|
||||
|
||||
|
|
20
README_fr.md
20
README_fr.md
|
@ -5,25 +5,25 @@ It shall NOT be edited by hand.
|
|||
|
||||
# osTicket pour YunoHost
|
||||
|
||||
[](https://dash.yunohost.org/appci/app/osticket)  
|
||||
[](https://dash.yunohost.org/appci/app/osticket)  
|
||||
[](https://install-app.yunohost.org/?app=osticket)
|
||||
|
||||
*[Read this readme in english.](./README.md)*
|
||||
|
||||
> *Ce package vous permet d'installer osTicket 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.*
|
||||
> *Ce package vous permet d’installer osTicket 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.*
|
||||
|
||||
## Vue d'ensemble
|
||||
## Vue d’ensemble
|
||||
|
||||
osTicket is a widely-used open source support ticket system. It seamlessly integrates inquiries created via email, phone and web-based forms into a simple easy-to-use multi-user web interface. Manage, organize and archive all your support requests and responses in one place while providing your customers with accountability and responsiveness they deserve.
|
||||
|
||||
**Version incluse :** 1.17.2~ynh1
|
||||
**Version incluse :** 1.17.2~ynh2
|
||||
|
||||
**Démo :** http://www.ostickethacks.com/demo/demo_info.php
|
||||
|
||||
## Captures d'écran
|
||||
## Captures d’écran
|
||||
|
||||

|
||||

|
||||
|
||||
## Avertissements / informations importantes
|
||||
|
||||
|
@ -31,9 +31,9 @@ osTicket is a widely-used open source support ticket system. It seamlessly integ
|
|||
|
||||
## Documentations et ressources
|
||||
|
||||
* Site officiel de l'app : <https://osticket.com>
|
||||
* Site officiel de l’app : <https://osticket.com>
|
||||
* Documentation officielle utilisateur : <https://docs.osticket.com>
|
||||
* Dépôt de code officiel de l'app : <https://github.com/osTicket/osTicket>
|
||||
* Dépôt de code officiel de l’app : <https://github.com/osTicket/osTicket>
|
||||
* Documentation YunoHost pour cette app : <https://yunohost.org/app_osticket>
|
||||
* Signaler un bug : <https://github.com/YunoHost-Apps/osticket_ynh/issues>
|
||||
|
||||
|
@ -49,4 +49,4 @@ ou
|
|||
sudo yunohost app upgrade osticket -u https://github.com/YunoHost-Apps/osticket_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>
|
|
@ -10,7 +10,15 @@ location __PATH__/ {
|
|||
#client_max_body_size 50M;
|
||||
|
||||
try_files $uri $uri/ index.php;
|
||||
location ~ [^/]\.php(/|$) {
|
||||
|
||||
location ~ ^/api/(?!http.php/)(.*) {
|
||||
try_files $uri $uri/ /api/http.php/$1;
|
||||
}
|
||||
location ~ ^/pages/(?!index.php/)(.*) {
|
||||
try_files $uri $uri/ /pages/index.php/$1;
|
||||
}
|
||||
|
||||
location ~ ^(.*[^/]\.php)(/|$) {
|
||||
fastcgi_split_path_info ^(.+?\.php)(/.*)$;
|
||||
fastcgi_pass unix:/var/run/php/php__PHPVERSION__-fpm-__NAME__.sock;
|
||||
|
||||
|
@ -24,3 +32,8 @@ location __PATH__/ {
|
|||
# Include SSOWAT user panel.
|
||||
include conf.d/yunohost_panel.conf.inc;
|
||||
}
|
||||
|
||||
location /include {
|
||||
deny all;
|
||||
return 403;
|
||||
}
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
"en": "Open source support ticket system",
|
||||
"fr": "Système de ticket de support open source"
|
||||
},
|
||||
"version": "1.17.2~ynh1",
|
||||
"version": "1.17.2~ynh2",
|
||||
"url": "https://osticket.com",
|
||||
"upstream": {
|
||||
"license": "GPL-2.0-or-later",
|
||||
|
|
Loading…
Add table
Reference in a new issue