URL of origin server shows in source code, not the board URL

josh_b_and_b

New member
There are 3 places on my homepage in the source code that have the upstream/origin server URL (from reverse proxy setup) and not the board URL.

Any idea why it's pulling that and not the board URL?

Code:
<meta data-template-name="public:metadata_macros::share_url" data-template-name="public:metadata_macros::output" property="og:url" content="https://forums.upstreamdomain.com/forums/?nextInternalLocale=en" />

<script>
        window.addEventListener('DOMContentLoaded', function() {
            XF.extendObject(true, XF.config, {
                //
                userId: 1,
                enablePush: false,
                pushAppServerKey: '',
                url: {
                    fullBase: 'https://forums.upstreamdomain.com/forums/',
                    basePath: '/forums/',
                    css: '/forums/css.php?css=__SENTINEL__&s=1&l=1&d=1726705819',
                    js: '/forums/js/__SENTINEL__?_v=66a7ee03',
                    icon: '/forums/data/local/icons/__VARIANT__.svg?v=1726705830#__NAME__',
                    iconInline: '/forums/styles/fa/__VARIANT__/__NAME__.svg?v=5.15.3',
                    keepAlive: '/forums/login/keep-alive'
                },
                cookie: {
                    path: '/',
                    domain: '',
                    prefix: 'xf_',
                    secure: true,
                    consentMode: 'disabled',
                    consented: ["optional","_third_party"]
                },
                cacheKey: 'f3ed7234243583f554e27d349fe769c5',
                csrf: '1727197667,fad2c97df4ced994a38bad0aaa3e2ede',
                js: {},
                fullJs: false,
                css: {"public:node_list.less":true,"public:share_controls.less":true,"public:extra.less":true},
                time: {
                    now: 1727197667,
                    today: 1727132400,
                    todayDow: 2,
                    tomorrow: 1727218800,
                    yesterday: 1727046000,
                    week: 1726614000,
                    month: 1725145200,
                    year: 1704067200
                },
                style: {
                    light: 'default',
                    dark: 'alternate',
                    defaultColorScheme: 'light'
                },
                borderSizeFeature: '3px',
                fontAwesomeWeight: 'r',
                enableRtnProtect: true,
                
                enableFormSubmitSticky: true,
                imageOptimization: '0',
                imageOptimizationQuality: 0.85,
                uploadMaxFilesize: 1073741824,
                uploadMaxWidth: 0,
                uploadMaxHeight: 0,
                allowedVideoExtensions: ["m4v","mov","mp4","mp4v","mpeg","mpg","ogv","webm"],
                allowedAudioExtensions: ["mp3","opus","ogg","wav"],
                shortcodeToEmoji: true,
                visitorCounts: {
                    conversations_unread: '0',
                    alerts_unviewed: '0',
                    total_unread: '0',
                    title_count: true,
                    icon_indicator: true
                },
                jsMt: {"xf\/action.js":"49af4721","xf\/embed.js":"49af4721","xf\/form.js":"49af4721","xf\/structure.js":"49af4721","xf\/tooltip.js":"49af4721"},
                jsState: {},
                publicMetadataLogoUrl: '',
                publicPushBadgeUrl: 'https://forums.upstreamdomain.com/forums/styles/default/xenforo/bell.png'
            });

            XF.extendObject(XF.phrases, {
                //
                date_x_at_time_y:     "{date} at {time}",
                day_x_at_time_y:      "{day} at {time}",
                yesterday_at_x:       "Yesterday at {time}",
                x_minutes_ago:        "{minutes} minutes ago",
                one_minute_ago:       "1 minute ago",
                a_moment_ago:         "A moment ago",
                today_at_x:           "Today at {time}",
                in_a_moment:          "In a moment",
                in_a_minute:          "In a minute",
                in_x_minutes:         "In {minutes} minutes",
                later_today_at_x:     "Later today at {time}",
                tomorrow_at_x:        "Tomorrow at {time}",
                short_date_x_minutes: "{minutes}m",
                short_date_x_hours:   "{hours}h",
                short_date_x_days:    "{days}d",

                day0: "Sunday",
                day1: "Monday",
                day2: "Tuesday",
                day3: "Wednesday",
                day4: "Thursday",
                day5: "Friday",
                day6: "Saturday",

                dayShort0: "Sun",
                dayShort1: "Mon",
                dayShort2: "Tue",
                dayShort3: "Wed",
                dayShort4: "Thu",
                dayShort5: "Fri",
                dayShort6: "Sat",

                month0: "January",
                month1: "February",
                month2: "March",
                month3: "April",
                month4: "May",
                month5: "June",
                month6: "July",
                month7: "August",
                month8: "September",
                month9: "October",
                month10: "November",
                month11: "December",

                active_user_changed_reload_page: "The active user has changed. Reload the page for the latest version.",
                server_did_not_respond_in_time_try_again: "The server did not respond in time. Please try again.",
                oops_we_ran_into_some_problems: "Oops! We ran into some problems.",
                oops_we_ran_into_some_problems_more_details_console: "Oops! We ran into some problems. Please try again later. More error details may be in the browser console.",
                file_too_large_to_upload: "The file is too large to be uploaded.",
                uploaded_file_is_too_large_for_server_to_process: "The uploaded file is too large for the server to process.",
                files_being_uploaded_are_you_sure: "Files are still being uploaded. Are you sure you want to submit this form?",
                attach: "Attach files",
                rich_text_box: "Rich text box",
                close: "Close",
                link_copied_to_clipboard: "Link copied to clipboard.",
                text_copied_to_clipboard: "Text copied to clipboard.",
                loading: "Loading…",
                you_have_exceeded_maximum_number_of_selectable_items: "You have exceeded the maximum number of selectable items.",

                processing: "Processing",
                'processing...': "Processing…",

                showing_x_of_y_items: "Showing {count} of {total} items",
                showing_all_items: "Showing all items",
                no_items_to_display: "No items to display",

                number_button_up: "Increase",
                number_button_down: "Decrease",

                push_enable_notification_title: "Push notifications enabled successfully at Boom & Bucket Forums",
                push_enable_notification_body: "Thank you for enabling push notifications!",

                pull_down_to_refresh: "Pull down to refresh",
                release_to_refresh: "Release to refresh",
                refreshing: "Refreshing…"
            });
        });
    </script>
 
Back
Top Bottom