fix: modified nginx config

This commit is contained in:
TomRomeo
2022-03-08 22:08:27 +00:00
committed by Vikash Kothary
parent 4443d9749d
commit 7ef846c52e
+3
View File
@@ -74,11 +74,14 @@ Installing
location / { location / {
proxy_http_version 1.0; proxy_http_version 1.0;
proxy_pass http://127.0.0.1:27702/; proxy_pass http://127.0.0.1:27702/;
client_max_body_size 222M;
} }
} }
``` ```
Adding the line `client_max_body_size 222M;` to Nginx prevents bigger collections from not being able to sync due to size limitations.
5. Run ankisyncd: 5. Run ankisyncd:
``` ```