Project

General

Profile

redmine开启https访问方式

Added by yanhua over 2 years ago

在httpd.conf增加一行配置和redmine配置中开启https协议
https://blog.csdn.net/weixin_33941350/article/details/92775137
1、打开Bitnami Redmine下apache的配置文件:D:\Bitnami\apache2\conf\httpd.conf

2、搜索定位找到以下信息(在271行左右,最好使用notepad++打开):

</Directory>

#

  1. DirectoryIndex: sets the file that Apache will serve if a directory
  1. is requested.

#

<IfModule dir_module>

DirectoryIndex index.html index.php

</IfModule>

3、然后在</Directory>后添加一行:RequestHeader set X_FORWARDED_PROTO 'https'


Comments