Hello everyone,
I just set up a fresh install of PHPBB 3.3, latest copy from the website.
Everything went smoothly during the install. No issues with dependencies, and super awesome how easy it was to set up.
The forum works flawlessly when accessed from within my Lan with the IP address. The issue comes with my reverse proxy setup and the way phpBB is handling paths.
I am using a reverse proxy with Apache2 to point https://www.promptworks.us/forums to my forums server on 192.168.0.55 .
The reverse proxy works, you can see my forum at the above location. Only issue is no styles - the reason is because phpBB is attempting to load styles from https://www.promptworks.us/styles, and assets from https://www.promptworks.us/assets
Any recommendations on how to proceed? I have searched for PHPBB issues with this but I haven't found any forum topics about this specific issue (surprisingly) - I guess this isn't a common setup.
I looked at the path_helper scripts within the php, and that file is complex and seems to address a lot of different pathing scenarios, not something I want to go tear up. I've tried manually overriding the paths in certain places with no luck, and restored the original path_helper.php to what it comes with by default.
Another option would be to use my reverse proxy to allow my forums server to control promptworks.us/styles and promptworks.us/assets among other directories which are used by phpBB - but I don't necessarily want to do that, it seems to me cleaner and more intuitive that promptworks.us/forums/styles and promptworks.us/forums/assets would be used to load these files.
I have gone into the ACP and set the "script root" directory to /forums and tried the override flag. These do not fix the issue however.
I was hoping someone more familiar with how pathing works in phpBB can help me navigate how I might modify the pathing code to get it working with this setup. Or perhaps I am missing something else.
Thanks in advance for any help