the issue with http front end and https back end
Dear Support,
I noticed that in my app, the front end pages are accessed from http:// , but the back end server scripts are accessed from https:// . Is this correct?
Is there any way to unify it? preferably I want to use https:// also for the front end pages.
Thanks
Here is my particular problem just to let you know why this is important to me. The problem I have now is , I have the following code in my server script:
response.success('<!DOCTYPE html SYSTEMLogin successfully.. redirecting..',"text/html")
I am trying to return a temporary page to the client, and in that page, I want to reference a javascript "common.js".
The common.js is built in front end, so the url should be "a href="http://" rel="nofollow"http:///a"
I got an error from chrome says:
Mixed Content: The page at 'https://api.appery.io/rest/1/code/b6f...' was loaded over HTTPS, but requested an insecure script 'http://appery.io/app/view/7fd2738c-fd...'. This request has been blocked; the content must be served over HTTPS.
I changed http to https, then it works. But I found that, with the same javascript common.js , a different set of localstorage has been created , which breaks my entire localstorage design.