Skip to content

Commit bf8d999

Browse files
committedFeb 8, 2025
chore: fix nix
1 parent a4c6502 commit bf8d999

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed
 

‎flake.nix

+2-1
Original file line numberDiff line numberDiff line change
@@ -124,12 +124,13 @@
124124

125125
services.nginx = {
126126
enable = true;
127+
clientMaxBodySize = "100M";
127128

128129
virtualHosts.${cfg.baseDomain} = {
129130
forceSSL = true;
130131
useACMEHost = cfg.baseDomain; # Reference the cert we define below
132+
131133
locations."/" = {
132-
client_max_body_size 100M;
133134
proxyPass = "http://127.0.0.1:3000";
134135
extraConfig = ''
135136
proxy_set_header Host $host;

0 commit comments

Comments
 (0)
Please sign in to comment.