Lee JaeKyu

http 서버에서 ERR_SSL_PROTOCOL_ERROR

원인

Content-Security-Policy에 upgrade-insecure-requests가 설정 되어 있기 때문.

해더에 위와같이 서버가 보내면 브라우저에서 자동으로 http를 https로 변경해서 호출한다.

disable

node에서 다음과 같이 설정해서 Content-Security-Policy를 설정하지 않는다.

var app = express();
var helmet = require('helmet')
app.use(helmet({
  contentSecurityPolicy:false,
}));

기타