Difference between revisions of "stoney core: Interface Installation"

From stoney cloud
Jump to: navigation, search
[unchecked revision][unchecked revision]
(Links)
 
(11 intermediate revisions by the same user not shown)
Line 3: Line 3:
  
 
= Overview =
 
= Overview =
After working through this documentation, you will be able to set up and configure your own (Online) Backup service server.
+
After working through this documentation, you will be able to set up and configure your own Selfcare interface on your stoney cloud installation.
  
 
= Software Installation =
 
= Software Installation =
Line 11: Line 11:
  
 
== Keywords & USE-Flags ==
 
== Keywords & USE-Flags ==
None.
+
As you're installing the Selfcare interface on a existing stoney cloud installation, you do not need any further keywords or USE-flags.
  
 
== Emerge ==
 
== Emerge ==
 
  emerge -va www-apps/sst-selfcare
 
  emerge -va www-apps/sst-selfcare
 
For more information, visit the [http://www.gentoo.org/doc/en/gentoolkit.xml Gentoolkit] page.
 
  
 
= Software Configuration =
 
= Software Configuration =
 
== Selfcare ==
 
== Selfcare ==
 +
=== Selfcare Configuration ===
 +
Edit the main configuration file of the Selfcare interface:
 
  /var/www/selfcare/htdocs/protected/config/main.php
 
  /var/www/selfcare/htdocs/protected/config/main.php
  
 +
The following default values need to be changed according to your stoney cloud installation.
 
  'server' => 'ldaps://<STONEY-CLOUD-LDAP-HOSTNAME>/',
 
  'server' => 'ldaps://<STONEY-CLOUD-LDAP-HOSTNAME>/',
 
  'bind_rdn' => 'cn=Manager,dc=stoney-cloud,dc=org',
 
  'bind_rdn' => 'cn=Manager,dc=stoney-cloud,dc=org',
Line 27: Line 28:
 
  'base_dn' => 'dc=stoney-cloud,dc=org',
 
  'base_dn' => 'dc=stoney-cloud,dc=org',
 
  'adminEmail'=>'webmaster@example.com'
 
  'adminEmail'=>'webmaster@example.com'
 +
 +
For example:
 +
'server' => 'ldaps://ldamp.stepping-stone.ch/',
 +
'bind_rdn' => 'cn=Manager,o=stepping-stone,c=ch',
 +
'bind_pwd' => 'myverysecretpassword',
 +
'base_dn' => 'o=stepping-stone,c=ch',
 +
'adminEmail'=>'webmaster@stepping-stone.ch'
 +
 +
=== Themes (per Reseller) ===
 +
Each Reseller can have their own theme. The themes are dependent on the fully qualified domain name (fqdn). The uniform resource identifier (uri) https://selfcare.stepping-stone.ch will point to the following directory:
 +
/var/www/selfcare/htdocs/themes/selfcare.stepping-stone.ch
  
 
= Links =
 
= Links =
Line 33: Line 45:
  
  
[[Category:Documentation]]
+
[[Category:stoney core]]

Latest revision as of 12:00, 13 October 2013

Abstract

This document describes the installation of the Selfcare interface above a stoney cloud installation.

Overview

After working through this documentation, you will be able to set up and configure your own Selfcare interface on your stoney cloud installation.

Software Installation

Requirements

A working stoney cloud installation.

Keywords & USE-Flags

As you're installing the Selfcare interface on a existing stoney cloud installation, you do not need any further keywords or USE-flags.

Emerge

emerge -va www-apps/sst-selfcare

Software Configuration

Selfcare

Selfcare Configuration

Edit the main configuration file of the Selfcare interface:

/var/www/selfcare/htdocs/protected/config/main.php

The following default values need to be changed according to your stoney cloud installation.

'server' => 'ldaps://<STONEY-CLOUD-LDAP-HOSTNAME>/',
'bind_rdn' => 'cn=Manager,dc=stoney-cloud,dc=org',
'bind_pwd' => '<STONEY-CLOUD-LDAP-PASSWORD>',
'base_dn' => 'dc=stoney-cloud,dc=org',
'adminEmail'=>'webmaster@example.com'

For example:

'server' => 'ldaps://ldamp.stepping-stone.ch/',
'bind_rdn' => 'cn=Manager,o=stepping-stone,c=ch',
'bind_pwd' => 'myverysecretpassword',
'base_dn' => 'o=stepping-stone,c=ch',
'adminEmail'=>'webmaster@stepping-stone.ch'

Themes (per Reseller)

Each Reseller can have their own theme. The themes are dependent on the fully qualified domain name (fqdn). The uniform resource identifier (uri) https://selfcare.stepping-stone.ch will point to the following directory:

/var/www/selfcare/htdocs/themes/selfcare.stepping-stone.ch

Links