Changes between Version 35 and Version 36 of Dev/GettingStarted


Ignore:
Timestamp:
01/11/10 18:21:38 (3 years ago)
Author:
jherr
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Dev/GettingStarted

    v35 v36  
    139139Edit the etc/indico.conf file. 
    140140 
    141 {{{ 
    142 #!python 
     141Set the base URL 
     142 
     143{{{ 
     144#!python 
     145#------------------------------------------------------------------------------ 
     146# URLs 
     147#------------------------------------------------------------------------------ 
     148# BaseURL is the url where Indico will be accessed: 
     149 
     150BaseURL              = "http://pcitudsjherrindico.cern.ch/indico" 
     151 
     152# BaseSecureURL is the HTTPS location of Indico. 
     153 
     154BaseSecureURL        = "https://pcitudsjherrindico.cern.ch/indico" 
     155 
     156}}} 
     157 
     158Set directories according to your installation: 
     159 
     160{{{ 
     161#!python 
     162#------------------------------------------------------------------------------ 
     163# DIRECTORIES 
     164#------------------------------------------------------------------------------ 
    143165ArchiveDir           = "/opt/indico/archive" 
    144166BinDir               = "/home/jdoe/cds-indico/bin" 
     
    151173}}} 
    152174 
    153 You'll need to change the path for one that works for you. 
    154175 
    155176Configure the SMTP server that Indico will use to send emails. Without this, you won't be able to create users in Indico because Indico sends confirmation emails. 
    156 For this, edit the etc/indico.conf file. 
    157177You have 2 options:[[BR]] 
    158178-Set SmtpServer to cernmx.cern.ch and leave SmtpLogin and SmtpPassword blank (recommended), or ...[[BR]] 
     
    160180-Set up a SMTP server on your PC and set SmtpServer to your PC. 
    161181 
    162  
    163 '''v.''' The final step! See if it all works! 
     182{{{ 
     183#!python 
     184#------------------------------------------------------------------------------ 
     185# SMTP 
     186#------------------------------------------------------------------------------ 
     187SmtpServer           = "cernmx.cern.ch" 
     188SmtpLogin            = "" 
     189SmtpPassword         = "" 
     190}}} 
     191 
     192Set the web user and web user group 
     193 
     194{{{ 
     195#!python 
     196#------------------------------------------------------------------------------ 
     197# APACHE 
     198#------------------------------------------------------------------------------ 
     199 
     200# ApacheUser is the user that Apache runs as (Look for "User" inside httpd.conf) 
     201 
     202ApacheUser = "www-data" 
     203 
     204# ApacheGroup is the group that Apache runs as (Look for "Group" inside httpd.conf) 
     205 
     206ApacheGroup = "www-data" 
     207}}} 
     208 
     209 
     210The final step! See if it all works! 
    164211For this:[[BR]] 
    165212