Apache Reverse Proxy Conf everything working except webcam stream

Fedora 33 & Apache
tried to use
<Location /octopi> .... and it did not work

switched to

<Location /octoprint> .... and everything is working except my webcam stream.
funny how the snapshot works but the stream does not ...

i redirect all traffic coming in on port 80 with this conf that i think may be the issue ???

<VirtualHost *:80>
ServerName myhost.webhop.net
RewriteEngine on
RewriteCond %{SERVER_NAME} =myhost.webhop.net
RewriteRule ^ https://%{SERVER_NAME}%{REQUEST_URI} [END,NE,R=permanent]

<VirtualHost *:443>
ServerName myhost.webhop.net

<Location /octoprint/>
RequestHeader set X-SCRIPT-NAME /octoprint/
RequestHeader set X-SCHEME https
ProxyPassReverse http://192.168.1.250
RewriteEngine on
RewriteCond %{HTTP:UPGRADE} =websocket [NC]
RewriteRule /octoprint/(. ) ws://192.168.1.250/$1 [P,L]
RewriteCond %{HTTP:UPGRADE} !=websocket [NC]
RewriteRule /octoprint/(.
) http://192.168.1.250/$1 [P,L]

SSLCertificateFile /etc/letsencrypt/live/myhost.webhop.net/fullchain.pem
SSLCertificateKeyFile /etc/letsencrypt/live/myhost.webhop.net/privkey.pem
Include /etc/letsencrypt/options-ssl-apache.conf

Hello @silvamark !

You have to decide: Either you open a new thread or you link into an existing one. But please not both.

open new please ... I'm new here sorry if I don't quite get the etiquette yet ...

oddly I turned off the wifi on my phone and connected to the apache reverse proxy and its working 100%
the stream doesn't load when I'm connected to my home network .... hmmm