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.

  • 相关阅读:
    前端常见跨域解决方案
    VS单元测试--初级篇
    高等数学思路
    二元函数求极值判别式AC-B^2
    向量积详解
    伯努利分布均值和方差
    两个标准正态随机变量相乘的方差
    a分位数与双侧a分位数
    中心极限定理概念理解与记忆
    样本方差概念解析
  • 原文地址:https://www.cnblogs.com/darkmatter/p/3606794.html
Copyright © 2011-2022 走看看