It drives me crazy the fact that I cannot change the font family. I select Inter (or other font family) as my font family and there are no changes, I can’t change the Arial font family.
I also tried Inter with the CSS method with the @import from Google Font. NOT WORKING! How do I actually change the font family?
If so, the force_https site setting is automatically enabled. This is a hidden site setting that you can change in the rails console. It might not be enabled somehow
Give it a try
cd /var/discourse ./launcher enter app rails c SiteSetting.force_https=true exit
There’s a link in my post, “standard install” automatically links to the topic that explains what it is
To elaborate on what Don said, the force https was one available in Discourse admin settings, but not anymore as HTTPS has been enabled by default on Discourse for a long time now (like, 2 years maybe?). So, if needed, this now hidden setting must be enabled via the command line for example.
I suppose using a reverse proxy makes your Discourse not a standard install and may have caused the issue you faced (can’t know for sure).
Depends of reverse proxy how it talks with a backend. Varnish, if not Enterprise, doesn’t use SSL after termination and that’s why reverse proxy must send something like proxy_set_header X-Forwarded-Proto https;.
But good to know I have to go to hidden settings next time I use Varnish between Nginx and Discourse (plus something else, because otherwise it would be just stupid in my scale).
Or am I totally misunderstanding what forcing means now?