• Searching around and reading the FAQ I didn’t see any mention of HTTPS support. Would it be possible to add the scheme either as a directory or prefix before hostname on the cache files generated by WPSC?

    Either /wp-content/cache/supercache/(http|https):example.org/ or /wp-content/cache/supercache/(http|https)/example.org/ ?

    Then the files could be served directly from nginx like so:
    try_files “/wp-content/cache/supercache/${scheme}:${host}${request_uri}index.html” =418;
    or
    try_files “/wp-content/cache/supercache/${scheme}/${host}${request_uri}index.html” =418;

    Currently I work around the issue by bypassing the cache when the scheme is https but on sites with no user login it would be nice to be able to serve up a cached version.

    https://ww.wp.xz.cn/plugins/wp-super-cache/

The topic ‘HTTPS support for SSL / SPDY?’ is closed to new replies.