fd rg & gpt removed & nextcloud max upload size

This commit is contained in:
Danilo Reyes 2023-11-11 21:59:08 -06:00
parent 958b17708d
commit d043e4f356
3 changed files with 39 additions and 35 deletions

View File

@ -705,6 +705,8 @@ environment = {
jellyfin-ffmpeg # coolest video converter! jellyfin-ffmpeg # coolest video converter!
mediainfo mediainfo
dlib dlib
fd
ripgrep
]; ];
variables = rec { variables = rec {
# PATH # PATH

View File

@ -8,7 +8,6 @@ let
workstation = "192.168.1.64"; workstation = "192.168.1.64";
collabora = "https://192.168.1.69:9980"; collabora = "https://192.168.1.69:9980";
jellyfinPort = "8096"; jellyfinPort = "8096";
gptPort = "7860";
nextcloudPort = 80; nextcloudPort = 80;
flamePort = 5005; flamePort = 5005;
secretFlamePort = 5007; secretFlamePort = 5007;
@ -30,6 +29,7 @@ in {
sslCiphers = "AES256+EECDH:AES256+EDH:!aNULL"; sslCiphers = "AES256+EECDH:AES256+EDH:!aNULL";
appendHttpConfig = '' appendHttpConfig = ''
### GLOBAL ### GLOBAL
# client_max_body_size 25G;
# Add HSTS header with preloading to HTTPS requests. # Add HSTS header with preloading to HTTPS requests.
# Adding this header to HTTP requests is discouraged # Adding this header to HTTP requests is discouraged
map $scheme $hsts_header { map $scheme $hsts_header {

View File

@ -112,6 +112,8 @@ in {
extraTrustedDomains = [ "cloud.rotehaare.art" "danilo-reyes.com" ]; extraTrustedDomains = [ "cloud.rotehaare.art" "danilo-reyes.com" ];
}; };
phpOptions = { phpOptions = {
upload_max_filesize = "25G";
post_max_size = "25G";
catch_workers_output = "yes"; catch_workers_output = "yes";
display_errors = "stderr"; display_errors = "stderr";
error_reporting = "E_ALL & ~E_DEPRECATED & ~E_STRICT"; error_reporting = "E_ALL & ~E_DEPRECATED & ~E_STRICT";