Content-Security-Policy에 upgrade-insecure-requests가 설정 되어 있기 때문.
해더에 위와같이 서버가 보내면 브라우저에서 자동으로 http를 https로 변경해서 호출한다.
node에서 다음과 같이 설정해서 Content-Security-Policy를 설정하지 않는다.
var app = express();
var helmet = require('helmet')
app.use(helmet({
contentSecurityPolicy:false,
}));