Hello,
this information may be useful:
I tried to use ElkArte with HaProxy (it is a reverse proxy) but I had weird display
Searching the smf forum, I found the information:
- In "Settings.php", change $boardurl to '' (WARNING! This cannot be done using the web GUI because it will default to 'http://' and break your forum!!)
- Update the MySQL 'settings' table and change all URLs from absolute to relative
- Update the MySQL 'themes' table and change all URLs from absolute to relative
To fix my forum I used the following queries:
UPDATE settings SET value=REPLACE(value,'http://forum.domain.tld','') WHERE value LIKE 'http://forum.domain.tld%';
UPDATE themes SET value=REPLACE(value,'http://forum.domain.tld,'') WHERE value LIKE 'http://forum.domain.tld%';
and the display is OK now