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.

  • 相关阅读:
    .Spring事务管理
    什么叫事务;什么叫业务逻辑;什么叫持久化
    Hibernate基本应用01
    Maven整理
    责任链模式和观察者模式
    SpringBoot基础入门
    反射总结
    多线程
    IO流
    File类总结
  • 原文地址:https://www.cnblogs.com/darkmatter/p/3606794.html
Copyright © 2011-2022 走看看