upgpkg: wordpress 6.2.1-1
[ArchLinux/community.git] / nextcloud / trunk / nextcloud.uwsgi
blob53909a922543ec785f7c05b4319770b77f21e990
1 [uwsgi]
2 procname-master = %n
3 # change to php to use latest PHP
4 plugins = php_legacy
5 master = true
6 socket = /run/%n/%n.sock
7 # uncomment for a stats socket, that can be used with uwsgitop
8 # stats = /run/%n/%n-stats.sock
9 uid = nextcloud
10 gid = nextcloud
11 processes = 10
12 cheaper = 4
13 cheaper-step = 1
14 idle = 600
15 die-on-idle = true
17 ; reload whenever this config file changes
18 touch-reload = %p
20 cloud_data_dir = /var/lib/nextcloud/data
21 cloud_writable_apps_dir = /var/lib/nextcloud/apps
22 # change to /usr/lib/php/modules to use latest PHP
23 php_modules_dir = /usr/lib/php_legacy/modules
24 chdir = %(cloud_data_dir)
26 php-allowed-ext = .php
27 php-docroot = /usr/share/webapps/%n
28 php-index = index.php
29 php-set = date.timezone=Europe/Berlin
30 php-set = open_basedir=%(cloud_data_dir):%(cloud_writable_apps_dir):/var/lib/%n:/tmp/:/usr/share/webapps/%n:/etc/webapps/%n:/dev/urandom:%(php_modules_dir):/run/redis/redis.sock:/var/log/%n/%n.log:/proc/meminfo
31 php-set = session.save_path=/tmp
32 php-set = session.gc_maxlifetime  21600
33 php-set = session.gc_divisor  500
34 php-set = session.gc_probability  1
35 php-set = post_max_size=1000M
36 php-set = upload_max_filesize=1000M
37 php-set = always_populate_raw_post_data=-1
38 php-set = max_input_time=120
39 php-set = max_execution_time=60
40 php-set = memory_limit=768M
41 php-set = zend_extension=opcache
42 php-set = opcache.enable=1
43 php-set = opcache.enable_cli=1
44 php-set = opcache.interned_strings_buffer=8
45 php-set = opcache.max_accelerated_files=10000
46 php-set = opcache.memory_consumption=128
47 php-set = opcache.save_comments=1
48 php-set = opcache.revalidate_freq=1
50 # uncomment if php-apcu is installed and used
51 # php-set = extension=apcu
52 php-set = extension=bcmath
53 php-set = extension=bz2
54 php-set = extension=curl
55 php-set = extension=exif
56 php-set = extension=ftp
57 php-set = extension=gd
58 php-set = extension=gmp
59 # uncomment if php-imagick is installed and used
60 # php-set = extension=imagick
61 php-set = extension=intl
62 php-set = extension=iconv
63 php-set = extension=ldap
64 # uncomment if php-memcached is installed and used
65 # php-set = extension=memcached
66 php-set = extension=pdo_mysql
67 # uncomment if php-pgsql is installed and used
68 # php-set = extension=pdo_pgsql
69 php-set = extension=pdo_sqlite
70 # uncomment if php-igbinary is installed and used
71 # php-set = extension=igbinary
72 # uncomment if php-redis is installed and used (requires php-igbinary)
73 # php-set = extension=redis
74 php-set = extension=sockets
75 php-set = extension=sysvsem
76 # uncomment if php-xsl is installed and used
77 # php-set = extension=xsl
78 php-set = extension=zip
80 # change the URL to your own address and uncomment to run a webcron job every five minutes
81 # cron = -5 -1 -1 -1 -1 curl --silent https://change.me.tld/cron.php 1>/dev/null
83 # uncomment to run a cron job every five minutes (change to php to use latest PHP)
84 # cron = -5 -1 -1 -1 -1 php-legacy -f /usr/share/webapps/%n/cron.php