1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/osticket_ynh.git synced 2024-09-03 19:56:17 +02:00

Merge pull request #56 from YunoHost-Apps/testing

Testing
This commit is contained in:
yalh76 2023-01-22 16:27:30 +01:00 committed by GitHub
commit b10e34643e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 26 additions and 13 deletions

View file

@ -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

View file

@ -5,25 +5,25 @@ It shall NOT be edited by hand.
# osTicket pour YunoHost
[![Niveau d'intégration](https://dash.yunohost.org/integration/osticket.svg)](https://dash.yunohost.org/appci/app/osticket) ![Statut du fonctionnement](https://ci-apps.yunohost.org/ci/badges/osticket.status.svg) ![Statut de maintenance](https://ci-apps.yunohost.org/ci/badges/osticket.maintain.svg)
[![Niveau dintégration](https://dash.yunohost.org/integration/osticket.svg)](https://dash.yunohost.org/appci/app/osticket) ![Statut du fonctionnement](https://ci-apps.yunohost.org/ci/badges/osticket.status.svg) ![Statut de maintenance](https://ci-apps.yunohost.org/ci/badges/osticket.maintain.svg)
[![Installer osTicket avec YunoHost](https://install-app.yunohost.org/install-with-yunohost.svg)](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 dinstaller osTicket rapidement et simplement sur un serveur YunoHost.
Si vous navez pas YunoHost, regardez [ici](https://yunohost.org/#/install) pour savoir comment linstaller et en profiter.*
## Vue d'ensemble
## Vue densemble
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
![Capture d'écran de osTicket](./doc/screenshots/screenshot.png)
![Capture décran de osTicket](./doc/screenshots/screenshot.png)
## 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 lapp : <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 lapp : <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 dinfos sur le packaging dapplications :** <https://yunohost.org/packaging_apps>

View file

@ -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;
}

View file

@ -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",