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 #70 from YunoHost-Apps/testing

Update nginx.conf
This commit is contained in:
yalh76 2023-08-15 23:25:45 +02:00 committed by GitHub
commit 5311ea1d74
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 8 additions and 8 deletions

View file

@ -18,7 +18,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.18~ynh2
**Shipped version:** 1.18~ynh3
**Demo:** http://www.ostickethacks.com/demo/demo_info.php

View file

@ -18,7 +18,7 @@ Si vous navez pas YunoHost, regardez [ici](https://yunohost.org/#/install) po
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.18~ynh2
**Version incluse :** 1.18~ynh3
**Démo :** http://www.ostickethacks.com/demo/demo_info.php

View file

@ -9,11 +9,7 @@ location __PATH__/ {
# Common parameter to increase upload size limit in conjunction with dedicated php-fpm file
client_max_body_size 256M;
try_files $uri $uri/ index.php;
location ~ ^/api/(?!http.php/)(.*) {
try_files $uri $uri/ /api/http.php/$1;
}
try_files $uri $uri/ index.php
location ~ ^/pages/(?!index.php/)(.*) {
try_files $uri $uri/ /pages/index.php/$1;
@ -34,6 +30,10 @@ location __PATH__/ {
include conf.d/yunohost_panel.conf.inc;
}
location ~ ^/api/(?!http.php/)(.*) {
try_files $uri $uri/ /api/http.php/$1;
}
location /include {
deny all;
return 403;

View file

@ -5,7 +5,7 @@ name = "osTicket"
description.en = "Open source support ticket system"
description.fr = "Système de ticket de support open source"
version = "1.18~ynh2"
version = "1.18~ynh3"
maintainers = ["yalh76"]