Ultaschall4D
New Pleskian
- Server operating system version
- Ubuntu 22.04.5 LTS
- Plesk version and microupdate number
- Plesk Obsidian v18.0.64_build1800241008.13 os_Ubuntu 22.04
Hello everyone!
I am building a chatbot. The chat outputs the answers streamed. Now I'm trying to get it running on a Plesk system. But somehow the text/event streaming is not working. All replies are returned completely, I have already disabled gzip, but also without success. Apache + nginx as reverse proxy server (nginx). How do I get streaming responses?
I have:
output buffering have be disabled in php.ini config
output_buffering = Off zlib.output_compression = Off
Apache gzip module is disabled. You can disable this through Apache config files or by adding the following lines to the `/public/.htaccess` file:s
<IfModule mod_headers.c> RewriteRule ^(.*)$ $1 [NS,E=no-gzip:1,E=dont-vary:1] </IfModule>
... Also, perhabs noting that if you’re using Nginx as a proxy on Apache, the streaming issue might be related to the Nginx configuration?
Can anyone help me?
I am building a chatbot. The chat outputs the answers streamed. Now I'm trying to get it running on a Plesk system. But somehow the text/event streaming is not working. All replies are returned completely, I have already disabled gzip, but also without success. Apache + nginx as reverse proxy server (nginx). How do I get streaming responses?
I have:
output buffering have be disabled in php.ini config
output_buffering = Off zlib.output_compression = Off
Apache gzip module is disabled. You can disable this through Apache config files or by adding the following lines to the `/public/.htaccess` file:s
<IfModule mod_headers.c> RewriteRule ^(.*)$ $1 [NS,E=no-gzip:1,E=dont-vary:1] </IfModule>
... Also, perhabs noting that if you’re using Nginx as a proxy on Apache, the streaming issue might be related to the Nginx configuration?
Can anyone help me?