Visual Studio 에서 IIS Express를 통해서 웹 개발을 할 때


다른 PC에서 접속 하려고 하면 보안 문제로 접속을 할 수 없다.


해결 방법!


.vs/config/applicationhost.config 에



<binding protocol="http" bindingInformation="*:65148:localhost" />



<binding protocol="http" bindingInformation="*:65148:192.168.2.21" /> 로 바꾼다.


관리자권한으로 cmd 열고


netsh http add urlacl url=http://192.168.2.21:65148/ user=everyone

'Develop' 카테고리의 다른 글

정규표현식 1  (0) 2016.09.22
mysql slave 설정  (0) 2016.09.21
iis express 64 bit  (0) 2016.08.24
구글 연동  (0) 2016.08.18
mysql procedure 내 문자열 검색  (0) 2016.07.29

+ Recent posts