Compare commits

..

2 commits

Author SHA1 Message Date
RingOfStorms (Joshua Bell)
05fc8a71c5 add tr to ll command alias 2025-10-05 23:21:36 -05:00
RingOfStorms (Joshua Bell)
adf514c054 client max body size setting 2025-10-05 23:19:19 -05:00
3 changed files with 3 additions and 7 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 -Galh"; ll = "ls --color -Galhtr";
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,9 +9,7 @@ let
in in
{ {
services.nginx = { services.nginx = {
appendHttpConfig = '' clientMaxBodySize = "500m";
client_max_body_size 500M;
'';
virtualHosts = { virtualHosts = {
"10.12.14.10" = { "10.12.14.10" = {
locations = { locations = {

View file

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