시롤로지 나스 도커 guacamole 역방향 프록시 설정하기
페이지 정보
본문
출처: https://www.reddit.com/r/synology/comments/f2trly/synology_reverse_proxy_for_gaucamole/
시롤로지 도커에 guacamole 설치 후 https://도메인/guacamole 접속으로 인해서
역방향 프록시 설정이 안되는 경우에 아래 내용을 입력해서 redirected 처리한다.
guacamole 도커 내부 접속 후 아래 경로에 index.jsp 파일 만든다.
/usr/local/tomcat/webapps/ROOT/index.jsp
ROOT 폴더가 없으면 생성한다.
<%@ page import = "
java.io
.*,java.util.*" %>
<html>
<head>
<title>Page Redirection</title>
</head>
<body>
<center>
<h1>Page Redirection</h1>
</center>
<%
// New location to be redirected
String site = new String("
https://INSERTDOMAIN/guacamole
");
response.setStatus(response.SC_MOVED_TEMPORARILY);
response.setHeader("Location", site);
%>
</body>
</html>
댓글목록
등록된 댓글이 없습니다.