zoukankan      html  css  js  c++  java
  • Redmine Notes

    • Mandatory authenticaion: login as Administrator, Settings -> Authentication -> Check "Authentication required", set "Autologin" as "disabled";

    • Hide Bitnami landing page: modify the of file $REDMINE_HOME/apache2/htdocs/index.html as:

      <!DOCTYPE ...>

      <body onLoad = "parent.location = 'http://123.124.236.183/redmine/'">
      
          Redirection ...
      
      </body>
      

    Modify "parent.location" as your redmine location.

    • Modify Web UI font size: /opt/redmine-2.4.3-0/apps/redmine/htdocs/public/stylesheets/application.css, the 2nd line:

      body { ... font-size: ... }

    Add Email Notification

    Edit file: /opt/redmine-2.4.3-0/apps/redmine/htdocs/config/configuration.yml

    # default configuration options for all environments
    
    default:
    
      # Outgoing emails configuration (see examples above)
    
      email_delivery:
    
       delivery_method: :smtp
    
       smtp_settings:
    
    
    
         address: 123.124.236.199
    
         port: 25
    
         domain: boco.com.cn
    
         authentication: :login
    
         user_name: lichao1@boco.com.cn
    
         password: abaqus67
    

    then restart services: /opt/redmine-2.4.3-0/ctlscript.sh restart

    Change host path as Administrator: [Administration -> Settings -> General -> Host name and path: 123.../redmine]

    Note there is no "http://" before the string and no "/" after it, too.

  • 相关阅读:
    LG P4284 [SHOI2014]概率充电器
    LG P2592 [ZJOI2008]生日聚会
    LG P4953 [USACO02FEB]Cow Cycling
    LG P2389 电脑班的裁员
    LG P2344 [USACO11FEB]Generic Cow Protests G
    前端简历
    前端面试题目
    大前端的技术栈
    前端 -为什么要清楚浮动?
    Redis的功能实现
  • 原文地址:https://www.cnblogs.com/darkmatter/p/3606794.html
Copyright © 2011-2022 走看看