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

Merge branch 'master' into testing

This commit is contained in:
Éric Gaspar 2023-01-30 12:15:46 +01:00 committed by GitHub
commit d2c9e625ff
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 5 deletions

View file

@ -1,4 +1,4 @@
; Additional php.ini defines, specific to this pool of workers. ; Additional php.ini defines, specific to this pool of workers.
php_admin_value[upload_max_filesize] = 256M php_admin_value[upload_max_filesize] = 50M
php_admin_value[post_max_size] = 256M php_admin_value[post_max_size] = 50M

View file

@ -7,9 +7,9 @@ location __PATH__/ {
index index.php; index index.php;
# Common parameter to increase upload size limit in conjunction with dedicated php-fpm file # Common parameter to increase upload size limit in conjunction with dedicated php-fpm file
client_max_body_size 256M; client_max_body_size 50M;
try_files $uri __PATH__/index.php$is_args$args; try_files $uri __PATH__/index.php;
location ~ ^/index\.php(/|$) { location ~ ^/index\.php(/|$) {
fastcgi_split_path_info ^(.+?\.php)(/.*)$; fastcgi_split_path_info ^(.+?\.php)(/.*)$;

View file

@ -11,7 +11,7 @@ YNH_PHP_VERSION=8.1
php_dependencies="php$YNH_PHP_VERSION-fpm" php_dependencies="php$YNH_PHP_VERSION-fpm"
# dependencies used by the app (must be on a single line) # dependencies used by the app (must be on a single line)
pkg_dependencies="$php_dependencies" pkg_dependencies="git $php_dependencies"
#================================================= #=================================================
# PERSONAL HELPERS # PERSONAL HELPERS