Enable SCGI compression by default and set min size to 1000.

This commit is contained in:
rakshasa
2026-05-09 11:47:49 +02:00
committed by Jari Sundell
parent f05b48e228
commit b05b65bd65
+2 -2
View File
@@ -105,8 +105,8 @@ private:
bool m_is_jsonrpc_enabled{true};
bool m_is_xmlrpc_enabled{true};
std::atomic<bool> m_scgi_allow_compression{false};
std::atomic<unsigned int> m_scgi_min_compress_size{0};
std::atomic<bool> m_scgi_allow_compression{true};
std::atomic<unsigned int> m_scgi_min_compress_size{1000};
slot_download m_slot_find_download;
slot_file m_slot_find_file;