fix: owncast websockets, forgejo max body size in nginx #38

Merged
teutat3s merged 4 commits from fix-owncast into main 2023-10-29 22:12:21 +00:00
Showing only changes of commit 505602bd73 - Show all commits

View file

@ -25,7 +25,12 @@
return 302 /user/oauth2/keycloak;
'';
locations."/".proxyPass = "http://127.0.0.1:3000";
locations."/" = {
proxyPass = "http://127.0.0.1:3000";
extraConfig = ''
client_max_body_size 1G;
'';
};
};
services.gitea = {