root / okeanos_site / 90-okeanos.conf.sample @ e7d5ab04
History | View | Annotate | Download (1.1 kB)
1 |
# append okeanos_site application to django installed apps |
---|---|
2 |
INSTALLED_APPS = list(INSTALLED_APPS) + ['synnefo.okeanos_site'] |
3 |
|
4 |
# for production deployment no DEBUG needed |
5 |
DEBUG = True |
6 |
|
7 |
# invitations only, no login page exists |
8 |
# redirect client to the intro page |
9 |
LOGIN_URL = "http://host:port/intro" |
10 |
|
11 |
# redirect to login url (intro) on user logout |
12 |
LOGOUT_URL = LOGIN_URL |
13 |
|
14 |
# bypass Shibboleth authentication for /okeanos and /intro pages |
15 |
# (they should be available to the public) |
16 |
AAI_SKIP_AUTH_URLS = list(AAI_SKIP_AUTH_URLS) + ['/about', '/intro', '/okeanos_static'] |
17 |
|
18 |
# change django url configuration |
19 |
# okeanos_site.urls includes and extends/modifies synnefo.urls |
20 |
# based on the needs of okeanos aplha release |
21 |
ROOT_URLCONF = 'synnefo.okeanos_site.urls' |
22 |
|
23 |
# the url that is linked with okenaos_site.views.index view |
24 |
OKEANOS_SITE_URL = "/about" |
25 |
|
26 |
# the url of the synnefo web application (synnefo.ui.views.home) |
27 |
OKEANOS_APP_URL = "/ui" |
28 |
|
29 |
# video url (see okeanos_site/README) |
30 |
OKEANOS_VIDEO_URL = "http://vimeo.com/moogaloop.swf?clip_id=9330391&server=vimeo.com&show_title=0&show_byline=0&show_portrait=0&color=74aec9&fullscreen=1&autoplay=0&loop=0" |
31 |
|