motioneye-project/motioneye

Running behind Apache proxy

Offen

#2.077 geöffnet am 26.03.2021

 (4 Kommentare) (0 Reaktionen) (0 zugewiesene Personen)Python (636 Forks)batch import
help wantedtroubleshooting

Repository-Metriken

Stars
 (3.533 Sterne)
PR-Merge-Metriken
 (Durchschn. Merge 16T 14h) (33 gemergte PRs in 30 T)

Beschreibung

I'm trying to run motioneye behind an Apache reverse proxy. I've read quite a few issues on here as well as the wiki on nginx and Apache and I have the following configuration:

RewriteRule /doggycam$        /doggycam/               [R,L]
RewriteRule /doggycam/(.*)$   http://192.168.0.61/$1   [P,L]

This works relatively well. The web interface shows up and all the CSS and everything else loads fine as well. The only issue is that the video itself doesn't show. Looking at the dev console's network tab, I can see a request to http://mydomain:8081/?_=1616781429979 while everything else correctly requests from http://mydomain/doggycam/.

Why is the video the only thing that doesn't seem to work correctly and how can I fix it?

Contributor Guide