ddev / ddev-solr

Solr service for DDEV
Apache License 2.0
5 stars 5 forks source link

expose server on HTTPS #9

Closed tyler36 closed 1 year ago

tyler36 commented 1 year ago

This PR moves the server to HTTPS.

Problem

After running ddev status, I saw http://solr-d10-demo.ddev.site:8983, however click on this link opened the site in Chrome on HTTPS, which failed.

rfay commented 1 year ago

Solr UI doesn't behave well on HTTPS (redirects), I've never been able to get it to behave right.

rfay commented 1 year ago

If clicking on an http link got you to https, it's because you have your browser set up that way with https-everywhere or something. Try curl instead, use curl -I <URL> to see what exactly is going on.

mkalkbrenner commented 1 year ago

Solr UI doesn't behave well on HTTPS (redirects), I've never been able to get it to behave right.

I agree, that's why I choose HTTP.

tyler36 commented 1 year ago

Thanks for the feedback.