| 141 | | {{{ |
| 142 | | #!python |
| | 141 | Set the base URL |
| | 142 | |
| | 143 | {{{ |
| | 144 | #!python |
| | 145 | #------------------------------------------------------------------------------ |
| | 146 | # URLs |
| | 147 | #------------------------------------------------------------------------------ |
| | 148 | # BaseURL is the url where Indico will be accessed: |
| | 149 | |
| | 150 | BaseURL = "http://pcitudsjherrindico.cern.ch/indico" |
| | 151 | |
| | 152 | # BaseSecureURL is the HTTPS location of Indico. |
| | 153 | |
| | 154 | BaseSecureURL = "https://pcitudsjherrindico.cern.ch/indico" |
| | 155 | |
| | 156 | }}} |
| | 157 | |
| | 158 | Set directories according to your installation: |
| | 159 | |
| | 160 | {{{ |
| | 161 | #!python |
| | 162 | #------------------------------------------------------------------------------ |
| | 163 | # DIRECTORIES |
| | 164 | #------------------------------------------------------------------------------ |
| 162 | | |
| 163 | | '''v.''' The final step! See if it all works! |
| | 182 | {{{ |
| | 183 | #!python |
| | 184 | #------------------------------------------------------------------------------ |
| | 185 | # SMTP |
| | 186 | #------------------------------------------------------------------------------ |
| | 187 | SmtpServer = "cernmx.cern.ch" |
| | 188 | SmtpLogin = "" |
| | 189 | SmtpPassword = "" |
| | 190 | }}} |
| | 191 | |
| | 192 | Set 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 | |
| | 202 | ApacheUser = "www-data" |
| | 203 | |
| | 204 | # ApacheGroup is the group that Apache runs as (Look for "Group" inside httpd.conf) |
| | 205 | |
| | 206 | ApacheGroup = "www-data" |
| | 207 | }}} |
| | 208 | |
| | 209 | |
| | 210 | The final step! See if it all works! |