Apache

Apache에사 Proxy Server를 통해 Port - Sub Domain 연결하기

Posted 2014. 01. 02 Updated 2015. 10. 02 Views 12660 Replies 0
?

단축키

Prev이전 문서

Next다음 문서

ESC닫기

크게 작게 위로 아래로 댓글로 가기 인쇄

다음 Apache Site 설정 파일은 포트번호 8112번 서비스인 http://127.0.0.1:8112를 torrent.tuwlab.com으로 연결시킵니다.

<VirtualHost *:80>

	ServerName		torrent.tuwlab.com
	ServerAlias		torrent.tuwlab.com

	<Location />
		ProxyPass http://127.0.0.1:8112/
	</Location>

</VirtualHost>