XF 2.1 http property's on https website

foiovitor

Active member
Hello,

I'm preparing move from XF1.5 to XF2.1. I have a test board installed at https://beta.testsite.com/forums

Looking to source code of index board I find some http (non SSL):
Code:
    <meta property="og:site_name" content="Beta TestSite" />
    <meta property="og:type" content="website" />
        <meta property="og:title" content="Beta TestSite" />
        <meta property="twitter:title" content="Beta TestSite" />
    <meta property="og:url" content="http://beta.testsite.com/forums/index.php" />
        <meta name="theme-color" content="#006b5b" />

Code:
    <script>
        jQuery.extend(true, XF.config, {
            //
            userId: 1,
            enablePush: false,
            pushAppServerKey: '',
            url: {
                fullBase: 'http://beta.testsite.com/forums/',
                basePath: '/forums/',
                css: '/forums/css.php?css=__SENTINEL__&s=22&l=2&d=1556031600',
                keepAlive: '/forums/index.php?login/keep-alive'
            }
Code:
                visitorCounts: {
                conversations_unread: '0',
                alerts_unread: '0',
                total_unread: '0',
                title_count: true,
                icon_indicator: true
            },
            jsState: {},
            publicMetadataLogoUrl: '',
            publicPushBadgeUrl: 'http://beta.testsite.com/forums/styles/default/xenforo/bell.png'
        });

        jQuery.extend(XF.phrases, {

This is controlled by any configuration field? My Board URL are "https://beta.testsite.com/forums" and Home page URL "https://beta.testsite.com"

Thanks!
 
Those two URLs would be the URL you use to access the site, regardless of your settings. In other words, if you access your site over http, they'll be http, if you use https, they'll be https. And if you used a different domain that also points to your site, it would be that domain.
 
Top Bottom