Здравствуйте. В итоге HTTP3 у меня заработало, но столкнулся со следующей проблемой - не получается войти в почту через Roundcube. Конфигурация: ``` location / { try_files $uri @backend; }
location ~ .*\.(xml|jpeg|jpg|gif|png|css|js|pdf|txt|tar|ico|zip|wav|sql|bat|crt|gz)$ { try_files $uri =404; expires 7d; access_log off; log_not_found off; } location ~* \.php$ { return 403; } location @backend { proxy_pass http://127.0.0.1:1234/$request_uri; proxy_send_timeout 60s; proxy_read_timeout 60s; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-Proto http; } ``` Как только убираю строки с `proxy_set_header` то начинает работать нормально. Что надо добавить в `proxy_set_header` чтобы сайт работал корректно? -- С уважением, Izorkin mailto:izor...@gmail.com _______________________________________________ nginx-ru mailing list nginx-ru@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx-ru