nginx: enable aio_write due to 1.20.2 AIO fix

This commit is contained in:
Daniel Micay 2021-11-28 19:02:37 -05:00
parent a2bfaef2fc
commit cdcd278394

View File

@ -1,4 +1,4 @@
# nginx 1.20.x # nginx 1.20.2+
load_module modules/ngx_http_brotli_static_module.so; load_module modules/ngx_http_brotli_static_module.so;
@ -74,8 +74,7 @@ http {
if_modified_since before; if_modified_since before;
aio threads; aio threads;
# temporarily disabled since it appears to uncover a bug with how nginx and synapse interact aio_write on;
#aio_write on;
upstream backend { upstream backend {
server [::1]:8008 fail_timeout=1s; server [::1]:8008 fail_timeout=1s;