im trying to install opencloud right now, i been trying for 12+ hours..
alot of issues, lets just say that, now i got it more or less running a bit (maybe), but i cannot open it
docker compose log says
"error":"origin does not match request URL","host":"172.20.0.2:9200","origin":"https://mysite.com"
I tried to set this for reverse proxy
#PROXY-START/
<IfModule mod_proxy.c>
ProxyRequests Off
SSLProxyEngine on
# Force headers OpenCloud expects
RequestHeader set Host "mysite.com"
RequestHeader set X-Forwarded-Host "mysite.com"
RequestHeader set X-Forwarded-Proto "https"
ProxyPass / http://172.20.0.2:9200/
ProxyPassReverse / http://172.20.0.2:9200/
</IfModule>
#PROXY-END/
but it just wont work, how do i set this so it see mysite.com not 172.20.0.2:9200, so it rejects the connection?