feat(wordpress): Increase file upload size
All checks were successful
lint / check (push) Successful in 25s
build configuration / build_vault01 (push) Successful in 1m1s
build configuration / build_web02 (push) Successful in 1m1s
build configuration / build_compute01 (push) Successful in 1m9s
build configuration / build_storage01 (push) Successful in 1m35s
build configuration / build_web01 (push) Successful in 1m40s
ds-fr update / npins_update (push) Successful in 2m6s
All checks were successful
lint / check (push) Successful in 25s
build configuration / build_vault01 (push) Successful in 1m1s
build configuration / build_web02 (push) Successful in 1m1s
build configuration / build_compute01 (push) Successful in 1m9s
build configuration / build_storage01 (push) Successful in 1m35s
build configuration / build_web01 (push) Successful in 1m40s
ds-fr update / npins_update (push) Successful in 2m6s
This commit is contained in:
parent
16ea1d69ca
commit
e955f8cd35
1 changed files with 18 additions and 9 deletions
|
@ -25,18 +25,27 @@ let
|
||||||
i,
|
i,
|
||||||
}:
|
}:
|
||||||
{
|
{
|
||||||
services.wordpress = {
|
services = {
|
||||||
|
wordpress = {
|
||||||
webserver = "nginx";
|
webserver = "nginx";
|
||||||
sites.${name} = value;
|
sites.${name} = value;
|
||||||
};
|
};
|
||||||
|
|
||||||
services.nginx.virtualHosts.${name} = {
|
nginx.virtualHosts.${name} = {
|
||||||
onlySSL = true;
|
onlySSL = true;
|
||||||
sslCertificate = "${certs.${name}.directory}/fullchain.pem";
|
sslCertificate = "${certs.${name}.directory}/fullchain.pem";
|
||||||
sslCertificateKey = "${certs.${name}.directory}/key.pem";
|
sslCertificateKey = "${certs.${name}.directory}/key.pem";
|
||||||
sslTrustedCertificate = "${certs.${name}.directory}/chain.pem";
|
sslTrustedCertificate = "${certs.${name}.directory}/chain.pem";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
# Increase the max post size
|
||||||
|
phpfpm.pools."wordpress-${name}".phpOptions = ''
|
||||||
|
post_max_size = 64M;
|
||||||
|
upload_max_filesize = 64M;
|
||||||
|
memory_limit = 128M;
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
networking = {
|
networking = {
|
||||||
hostName = mkName name;
|
hostName = mkName name;
|
||||||
hosts.${mkLocal i} = [ name ];
|
hosts.${mkLocal i} = [ name ];
|
||||||
|
|
Loading…
Reference in a new issue