Compare commits

..

No commits in common. "05fc8a71c5ae86aeeb227582b4ee4b85f0104e13" and "52b440b5b3d6f8a248f754855bd502611694b52c" have entirely different histories.

3 changed files with 7 additions and 3 deletions

View file

@ -40,7 +40,7 @@ with lib;
date_compact = "date +'%Y%m%d'"; date_compact = "date +'%Y%m%d'";
date_short = "date +'%Y-%m-%d'"; date_short = "date +'%Y-%m-%d'";
ls = "ls --color -Gah"; ls = "ls --color -Gah";
ll = "ls --color -Galhtr"; ll = "ls --color -Galh";
lss = "du --max-depth=0 -h {.,}* 2>/dev/null | sort -hr"; lss = "du --max-depth=0 -h {.,}* 2>/dev/null | sort -hr";
psg = "ps aux | head -n 1 && ps aux | grep -v 'grep' | grep"; psg = "ps aux | head -n 1 && ps aux | grep -v 'grep' | grep";
cl = "clear"; cl = "clear";

View file

@ -9,7 +9,9 @@ let
in in
{ {
services.nginx = { services.nginx = {
clientMaxBodySize = "500m"; appendHttpConfig = ''
client_max_body_size 500M;
'';
virtualHosts = { virtualHosts = {
"10.12.14.10" = { "10.12.14.10" = {
locations = { locations = {

View file

@ -30,7 +30,9 @@
recommendedOptimisation = true; recommendedOptimisation = true;
recommendedProxySettings = true; recommendedProxySettings = true;
recommendedTlsSettings = true; recommendedTlsSettings = true;
clientMaxBodySize = "500m"; appendHttpConfig = ''
client_max_body_size 500M;
'';
virtualHosts = virtualHosts =
let let
tailnetConfig = { tailnetConfig = {