Proxy 서버나 로드밸런서 등에서는 HTTPS 접속시 HTTP_X_FORWARDED_PROTO 로 체크해야 하는 경우가 있음
This commit is contained in:
@ -229,7 +229,8 @@ define('G5_VISIT_BROWSCAP_USE', false);
|
|||||||
*/
|
*/
|
||||||
define('G5_IP_DISPLAY', '\\1.♡.\\3.\\4');
|
define('G5_IP_DISPLAY', '\\1.♡.\\3.\\4');
|
||||||
|
|
||||||
if(isset($_SERVER['HTTPS']) && $_SERVER['HTTPS']=='on') { //https 통신일때 daum 주소 js
|
if ((isset($_SERVER['HTTPS']) && $_SERVER['HTTPS']=='on') ||
|
||||||
|
(isset($_SERVER['HTTP_X_FORWARDED_PROTO']) && $_SERVER['HTTP_X_FORWARDED_PROTO']==='https')) { //https 통신일때 daum 주소 js
|
||||||
define('G5_POSTCODE_JS', '<script src="https://spi.maps.daum.net/imap/map_js_init/postcode.v2.js"></script>');
|
define('G5_POSTCODE_JS', '<script src="https://spi.maps.daum.net/imap/map_js_init/postcode.v2.js"></script>');
|
||||||
} else { //http 통신일때 daum 주소 js
|
} else { //http 통신일때 daum 주소 js
|
||||||
define('G5_POSTCODE_JS', '<script src="http://dmaps.daum.net/map_js_init/postcode.v2.js"></script>');
|
define('G5_POSTCODE_JS', '<script src="http://dmaps.daum.net/map_js_init/postcode.v2.js"></script>');
|
||||||
|
|||||||
Reference in New Issue
Block a user