• Resolved Jules81

    (@jules81)


    Vcaching plugin needs https support to work properly with SSL enforced websites (Hitch -> Varnish).

    One suggestion:

    Replace(line: 391):
    $schema = apply_filters(‘vcaching_schema’, ‘https://’);

    with something like:
    $getschema = is_ssl() ? ‘https://’ : ‘https://’;
    $schema = apply_filters(‘vcaching_schema’, $getschema);

    The page I need help with: [log in to see the link]

Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Wrong Schema on SSL Offloaded Varnish Sites’ is closed to new replies.