프로그래머호이잇

redmine context 추가 방법 본문

시스템운영

redmine context 추가 방법

호이잇! 2017. 9. 27. 17:09

cd 레드마인 홈


vi config/environment.rb


맨밑에 추가

Redmine::Utils::relative_url_root = "/redmine"


vi config.ru


변경 전

require ::File.expand_path('../config/environment',  __FILE__)

run RedmineApp::Application


변경 후


require ::File.expand_path('../config/environment',  __FILE__)

map '/redmine' do

  run RedmineApp::Application

end


레드 마인 재시작!!

'시스템운영' 카테고리의 다른 글

(Centos) 아파치 인증서 설정 방법  (0) 2017.09.28
아파치 http -> https 리다이렉트 방법  (0) 2017.09.28
redmine thin 실행  (0) 2017.09.27
아파치 설치 방법  (0) 2017.09.27
Bitbucket mysql 연동 방법  (0) 2017.09.26