We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents eb37264 + 42e4cc8 commit d977699Copy full SHA for d977699
pages/reverse-proxies/nginx.mdx
@@ -145,6 +145,9 @@ Copy your config from here:
145
# Disable directory listing for security
146
autoindex off;
147
148
+ # Increase maximum post size to prevent 413 error with images larger than 2MB (changes max size to 100MB)
149
+ client_max_body_size 100M;
150
+
151
# Enable Gzip compression for better performance
152
gzip on;
153
gzip_comp_level 6;
@@ -222,4 +225,4 @@ sudo systemctl reload nginx
222
225
```
223
226
### Vuola!
224
227
Your Nginx reverse proxy is now running, securely serving your Postiz instance at your subdomain.domain.tld. 🎉
-</Steps>
228
+</Steps>
0 commit comments