A service of Daily Data, Inc.
Contact Form

User Tools

Site Tools


software:nextcloud:installation

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
software:nextcloud:installation [2023/11/02 04:28] – created - external edit 127.0.0.1software:nextcloud:installation [2026/09/03 20:42] (current) rodolico
Line 9: Line 9:
   * https://docs.nextcloud.com/server/20/admin_manual/installation/source_installation.html   * https://docs.nextcloud.com/server/20/admin_manual/installation/source_installation.html
   * https://nextcloud.com/install/#instructions-server   * https://nextcloud.com/install/#instructions-server
- 
- 
- 
- 
  
 <code bash> <code bash>
Line 26: Line 22:
 </code> </code>
  
-joe /etc/php/7.??/apache2/php.ini+**Note**: The following rules need to be fixed in the existing system. On Debian, with their 'conf.d/' directory, it is simplest to just add a file which is sorted to be processed last (thus the 99-). When PHP configuration is read, it will process the standard php.ini, then process each entry in conf.d/ in sorted order, so 99-nextcloud.ini will be towards the end. 
 + 
 +For non-Debian based systems, you will need to manually edit the php.ini file, generally found in: 
 +joe /etc/php/version/<sapi>/php.ini 
 + 
 +Note: sapi is a subdirectory for different uses of PHP like apache, cli, cgi, ... You can change only one but it will not be carried over, so if you modify under apache/, it will only affect the web browser, not the cli.
  
-<code>+<code conf> 
 +; add this in the late-loading PHP override file for Nextcloud 
 +; add this in /etc/php/<version>/<sapi>/conf.d/99-nextcloud.ini
 memory_limit = 512M memory_limit = 512M
-upload_max_filesize = 500M +upload_max_filesize = 512M 
-post_max_size = 500M +post_max_size = 512M 
-max_execution_time = 300 +max_execution_time = 3600 
-date.timezone America/Chicago+max_input_time = 3600 
 +max_input_vars = 5000 
 +output_buffering = Off 
 +opcache.enable = 1 
 +opcache.interned_strings_buffer = 16 
 +opcache.max_accelerated_files = 10000 
 +opcache.memory_consumption = 128 
 +opcache.save_comments = 1 
 +opcache.jit 0
 </code> </code>
  
software/nextcloud/installation.1698899285.txt.gz · Last modified: by 127.0.0.1