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.

  • 相关阅读:
    Socket编程实现客户端与服务器一对一聊天
    HttpClient获取页面信息与Jsoup封装获取
    代码推送
    re正则
    MySQL 的主从复制
    关于前后端的缓存
    session/cookie/token
    如何保证缓存(redis)与数据库(MySQL)的一致性
    进程与线程(程序与任务)
    QA/QC
  • 原文地址:https://www.cnblogs.com/darkmatter/p/3606794.html
Copyright © 2011-2022 走看看