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

try to update source to 0.9.5

This commit is contained in:
Robles Rodolphe 2020-03-31 02:03:44 +02:00
parent dcc5a94d57
commit 4e92de26e6
6 changed files with 30 additions and 30 deletions

View file

@ -30,7 +30,7 @@ group = __USER__
; specific port;
; '/path/to/unix/socket' - to listen on a unix socket.
; Note: This value is mandatory.
listen = /var/run/php5-fpm-__NAMETOCHANGE__.sock
listen = /var/run/php7.2-fpm-__NAMETOCHANGE__.sock
; Set listen(2) backlog. A value of '-1' means unlimited.
; Default Value: 128 (-1 on FreeBSD and OpenBSD)
@ -38,13 +38,13 @@ listen = /var/run/php5-fpm-__NAMETOCHANGE__.sock
; Set permissions for unix socket, if one is used. In Linux, read/write
; permissions must be set in order to allow connections from a web server. Many
; BSD-derived systems allow connections regardless of permissions.
; BSD-derived systems allow connections regardless of permissions.
; Default Values: user and group are set as the running user
; mode is set to 0660
listen.owner = www-data
listen.group = www-data
;listen.mode = 0660
; List of ipv4 addresses of FastCGI clients which are allowed to connect.
; Equivalent to the FCGI_WEB_SERVER_ADDRS environment variable in the original
; PHP FCGI (5.2.2+). Makes sense only with a tcp listening socket. Each address
@ -117,7 +117,7 @@ pm.max_spare_servers = 3
; Note: Used only when pm is set to 'ondemand'
; Default Value: 10s
;pm.process_idle_timeout = 10s;
; The number of requests each child process should execute before respawning.
; This can be useful to work around memory leaks in 3rd party libraries. For
; endless request processing specify '0'. Equivalent to PHP_FCGI_MAX_REQUESTS.
@ -170,7 +170,7 @@ pm.max_requests = 500
;
; By default the status page only outputs short status. Passing 'full' in the
; query string will also return status for each pool process.
; Example:
; Example:
; http://www.foo.bar/status?full
; http://www.foo.bar/status?json&full
; http://www.foo.bar/status?html&full
@ -283,7 +283,7 @@ pm.max_requests = 500
; - ....
; %p: PID of the child that serviced the request
; %P: PID of the parent of the child that serviced the request
; %q: the query string
; %q: the query string
; %Q: the '?' character if query string exists
; %r: the request URI (without the query string, see %q and %Q)
; %R: remote IP address
@ -298,40 +298,40 @@ pm.max_requests = 500
;
; Default: "%R - %u %t \"%m %r\" %s"
;access.format = "%R - %u %t \"%m %r%Q%q\" %s %f %{mili}d %{kilo}M %C%%"
; The log file for slow requests
; Default Value: not set
; Note: slowlog is mandatory if request_slowlog_timeout is set
slowlog = /var/log/nginx/__NAMETOCHANGE__.slow.log
; The timeout for serving a single request after which a PHP backtrace will be
; dumped to the 'slowlog' file. A value of '0s' means 'off'.
; Available units: s(econds)(default), m(inutes), h(ours), or d(ays)
; Default Value: 0
request_slowlog_timeout = 5s
; The timeout for serving a single request after which the worker process will
; be killed. This option should be used when the 'max_execution_time' ini option
; does not stop script execution for some reason. A value of '0' means 'off'.
; Available units: s(econds)(default), m(inutes), h(ours), or d(ays)
; Default Value: 0
request_terminate_timeout = 1d
; Set open file descriptor rlimit.
; Default Value: system defined value
;rlimit_files = 1024
; Set max core size rlimit.
; Possible Values: 'unlimited' or an integer greater or equal to 0
; Default Value: system defined value
;rlimit_core = 0
; Chroot to this directory at the start. This value must be defined as an
; absolute path. When this value is not set, chroot is not used.
; Note: you can prefix with '$prefix' to chroot to the pool prefix or one
; of its subdirectories. If the pool prefix is not set, the global prefix
; will be used instead.
; Note: chrooting is a great security feature and should be used whenever
; Note: chrooting is a great security feature and should be used whenever
; possible. However, all PHP paths will be relative to the chroot
; (error_log, sessions.save_path, ...).
; Default Value: not set
@ -356,7 +356,7 @@ catch_workers_output = yes
; Note: set an empty value to allow all extensions.
; Default Value: .php
;security.limit_extensions = .php .php3 .php4 .php5
; Pass environment variables like LD_LIBRARY_PATH. All $VARIABLEs are taken from
; the current environment.
; Default Value: clean env
@ -370,7 +370,7 @@ catch_workers_output = yes
; overwrite the values previously defined in the php.ini. The directives are the
; same as the PHP SAPI:
; php_value/php_flag - you can set classic ini defines which can
; be overwritten from PHP call 'ini_set'.
; be overwritten from PHP call 'ini_set'.
; php_admin_value/php_admin_flag - these directives won't be overwritten by
; PHP call 'ini_set'
; For php_*flag, valid values are on, off, 1, 0, true, false, yes or no.

View file

@ -19,7 +19,7 @@
"multi_instance": true,
"services": [
"nginx",
"php7.0-fpm"
"php7.2-fpm"
],
"arguments": {
"install" : [

View file

@ -48,10 +48,10 @@ ynh_backup "/etc/nginx/conf.d/$domain.d/$app.conf"
# BACKUP THE PHP-FPM CONFIGURATION
#=================================================
ynh_backup "/etc/php5/fpm/pool.d/$app.conf"
ynh_backup "/etc/php5/fpm/conf.d/20-$app.ini"
ynh_backup "/etc/php7.2/fpm/pool.d/$app.conf"
ynh_backup "/etc/php7.2/fpm/conf.d/20-$app.ini"
# Backup directory location for the app from where the script is executed and
# Backup directory location for the app from where the script is executed and
# which will be compressed afterward
backup_dir=$YNH_APP_BACKUP_DIR

View file

@ -53,9 +53,9 @@ ynh_app_setting_set $app is_public $is_public
# Install dependency to convert tracks to a readable format for the browser
#=================================================
if [ "$(lsb_release --codename --short)" != "jessie" ]
if [ "$(lsb_release --codename --short)" != "jessie" ]
then
ynh_install_app_dependencies php-sqlite3
ynh_install_app_dependencies php7.2-sqlite3
else
ynh_install_app_dependencies php5-sqlite
fi

View file

@ -71,10 +71,10 @@ chown -R $app:$app $final_path
#=================================================
# RESTORE THE PHP-FPM CONFIGURATION
#=================================================
if [ "$(lsb_release --codename --short)" != "jessie" ]
if [ "$(lsb_release --codename --short)" != "jessie" ]
then
ynh_restore_file "/etc/php/7.0/fpm/pool.d/$app.conf"
ynh_restore_file "/etc/php/7.0/fpm/conf.d/20-$app.ini"
ynh_restore_file "/etc/php/7.2/fpm/pool.d/$app.conf"
ynh_restore_file "/etc/php/7.2/fpm/conf.d/20-$app.ini"
else
ynh_restore_file "/etc/php5/fpm/pool.d/$app.conf"
ynh_restore_file "/etc/php5/fpm/conf.d/20-$app.ini"
@ -86,9 +86,9 @@ fi
# REINSTALL DEPENDENCIES
#=================================================
if [ "$(lsb_release --codename --short)" != "jessie" ]
if [ "$(lsb_release --codename --short)" != "jessie" ]
then
ynh_install_app_dependencies php7.0-sqlite3
ynh_install_app_dependencies php7.2-sqlite3
else
ynh_install_app_dependencies php5-sqlite
fi
@ -98,9 +98,9 @@ fi
#=================================================
# RELOAD NGINX AND PHP-FPM
#=================================================
if [ "$(lsb_release --codename --short)" != "jessie" ]
if [ "$(lsb_release --codename --short)" != "jessie" ]
then
systemctl reload php7.0-fpm
systemctl reload php7.2-fpm
else
systemctl reload php5-fpm
fi

View file

@ -55,9 +55,9 @@ ynh_abort_if_errors
# Install dependency to convert tracks to a readable format for the browser
#=================================================
if [ "$(lsb_release --codename --short)" != "jessie" ]
if [ "$(lsb_release --codename --short)" != "jessie" ]
then
ynh_install_app_dependencies php-sqlite3
ynh_install_app_dependencies php7.2-sqlite3
else
ynh_install_app_dependencies php5-sqlite
fi