반응형

CORS on IIS7

For Microsoft IIS7, merge this into the web.config file at the root of your application or site: 
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<system.webServer>
<httpProtocol>
<customHeaders>
<add name="Access-Control-Allow-Origin" value="*" />
</customHeaders>
</httpProtocol>
</system.webServer>
</configuration>

If you don't have a web.config file already, or don't know what one is, just create a new file called web.config containing the snippet above

반응형
반응형

http://stackoverflow.com/questions/24921694/how-do-you-share-drives-between-amazon-aws-instances

- 동일한 시큐리티 그룹에 445포트 인바운드 정책추가(내부 아이피로)
- 각 서버에서 내부 IP로 접근
- 접근 지정 계정 지정 및 해당 폴더 공유

반응형

'AWS' 카테고리의 다른 글

AWS sshd 패스워드 로그인 허용  (0) 2019.07.15
Windows Server Core  (0) 2019.07.15
RDS MYSQL Read Replica  (0) 2019.07.15
반응형

http://www.microsoft.com/korea/windows/windowsmedia/9series/server/faq.aspx?section=WINDOWSMEDIASERVICESBASICS&question=WINDOWSMEDIASERVICESBASICS6#NAME_WINDOWSMEDIASERVICESBASICS



Windows Media Player 및 다른 클라이언트가 RTSP(Real Time Streaming Protocol), UDP(User Datagram Protocol), TCP(Transmission Control Protocol) 또는 HTTP(Hypertext Transfer Protocol)를 사용하여 방화벽 안쪽에 있는 Windows Media 서버에서 유니캐스트 콘텐츠를 스트리밍할 수 있게 하려면 다음 포트를 엽니다.

Streaming with RTSP
In: UDP port 5005
Out: UDP port 5004
In/Out: TCP port 554
Streaming with UDP
In: TCP on port 1755
In: UDP on port 1755
Out: UDP between port 1024-5000 (필요한 개수의 포트만 열림)
Streaming with TCP
In/Out: TCP on port 1755
Streaming with HTTP
In/Out: TCP on port 80
방화벽 안쪽에 있는 배포 서버가 RTSP, HTTP 또는 MMS를 사용하여 방화벽 밖에 있는 원본 서버에서 유니캐스트 콘텐츠를 스트리밍할 수 있게 하려면 다음 포트를 엽니다.

Streaming with RTSP
In: UDP on port 5005
In/Out: TCP on port 554
Out: UDP on port 5004
Streaming with HTTP
In/Out: TCP port 80
Streaming with MMS
In/Out: TCP on port 1755
멀티캐스트 스트리밍을 사용하여 콘텐츠를 배포하려면 표준 클래스 D 멀티캐스트 IP 주소(224.0.0.1 ~ 239.255.255.255)를 통해 네트워크 트래픽을 전송합니다. 멀티캐스트를 수행하려면 네트워크에서 멀티캐스트 전달이 사용 가능하도록 설정되어 있어야 합니다.

특정 방화벽 요구 사항과 설정은 Windows Media 서비스 9 시리즈 도움말 을 참조하십시오.
반응형

+ Recent posts