Set PHP memory limit to 512 MB for Nextcloud

Reformat Nextcloud's virtual host configuration and set it's PHP
memory limit to 512 MB
This commit is contained in:
Kris Lamoureux 2020-01-29 22:26:42 -05:00
parent d1ad35d0c1
commit c914f93cdf
Signed by: kris
GPG Key ID: 3EDA9C3441EDA925

View File

@ -1,26 +1,27 @@
<VirtualHost *:80>
ServerName {{ nc_domain }}
ServerName {{ nc_domain }}
ServerAdmin {{ nc_admin_email }}
DocumentRoot {{ nc_dir }}/public_html
ServerAdmin {{ nc_admin_email }}
DocumentRoot {{ nc_dir }}/public_html
<Directory {{ nc_dir }}/public_html>
<Directory {{ nc_dir }}/public_html>
Options +FollowSymLinks
AllowOverride All
Options +FollowSymLinks
AllowOverride All
<IfModule mod_dav.c>
Dav off
</IfModule>
<IfModule mod_dav.c>
Dav off
</IfModule>
SetEnv HOME {{ nc_dir }}/public_html
SetEnv HTTP_HOME {{ nc_dir }}/public_html
SetEnv HOME {{ nc_dir }}/public_html
SetEnv HTTP_HOME {{ nc_dir }}/public_html
</Directory>
# Nextcloud recommends 512MB
php_value memory_limit 512M
</Directory>
ErrorLog {{ nc_dir }}/logs/error.log
CustomLog {{ nc_dir }}/logs/access.log combined
ErrorLog {{ nc_dir }}/logs/error.log
CustomLog {{ nc_dir }}/logs/access.log combined
</VirtualHost>
# vim: syntax=apache ts=4 sw=4 sts=4 sr noet