Statistics
| Branch: | Tag: | Revision:

root / okeanos_site / 90-okeanos.conf.sample @ bf017f4e

History | View | Annotate | Download (1.2 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 = False
6

    
7
# we redirect the user to the intro page of the project
8
APP_INSTALL_URL = "http://host:port/intro"
9

    
10
# invitations only, no login page exists
11
# redirect client to the intro page
12
LOGIN_URL = "http://host:port/intro"
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