Revision 49c0d427

b/snf-cyclades-app/conf/20-snf-cyclades-app-api.conf
60 60
## The default firewall profile that will be in effect if no tags are defined
61 61
#DEFAULT_FIREWALL_PROFILE = 'DISABLED'
62 62
#
63
## our REST API would prefer to be explicit about trailing slashes
64
#APPEND_SLASH = False
65
#
66 63
## Fixed mapping of user VMs to a specific backend.
67 64
## e.g. BACKEND_PER_USER = {'example@synnefo.org': 2}
68 65
#BACKEND_PER_USER = {}
b/snf-cyclades-app/synnefo/app_settings/default/api.py
56 56
# The default firewall profile that will be in effect if no tags are defined
57 57
DEFAULT_FIREWALL_PROFILE = 'DISABLED'
58 58

  
59
# our REST API would prefer to be explicit about trailing slashes
60
APPEND_SLASH = False
61

  
62 59
# Fixed mapping of user VMs to a specific backend.
63 60
# e.g. BACKEND_PER_USER = {'example@synnefo.org': 2}
64 61
BACKEND_PER_USER = {}
......
108 105
# Astakos service token
109 106
# The token used for astakos service api calls (e.g. api to retrieve user email
110 107
# using a user uuid)
111
CYCLADES_SERVICE_TOKEN = '' 
108
CYCLADES_SERVICE_TOKEN = ''
112 109

  
113 110
# Let cyclades proxy user specific api calls to astakos, via self served
114 111
# endpoints. Set this to False if you deploy cyclades-app/astakos-app on the
b/snf-webproject/conf/10-snf-webproject-deploy.conf
24 24
## Set the url you want to redirect users to when they access the root path of 
25 25
## your site.
26 26
#WEBPROJECT_ROOT_REDIRECT = None
27
#
28
##When set to True, if the request URL does not match any of the patterns in the
29
##URLconf and it doesn't end in a slash, an HTTP redirect is issued to the same
30
##URL with a slash appended. Note that the redirect may cause any data submitted
31
##in a POST request to be lost. Due to the REST nature of most of the registered
32
##Synnefo endpoints we prefer to disable this behaviour by default.
33
#APPEND_SLASH = False
b/snf-webproject/synnefo/webproject/settings/default/deploy.py
20 20
# Settings / cookies that should be 'cleansed'
21 21
HIDDEN_SETTINGS = 'SECRET|PASSWORD|PROFANITIES_LIST|SIGNATURE|AMQP_HOSTS|PRIVATE_KEY|DB_CONNECTION'
22 22
HIDDEN_COOKIES  = 'password|_pithos2_a|token|sessionid|shibstate|shibsession|CSRF_COOKIE'
23

  
24

  
25
#When set to True, if the request URL does not match any of the patterns in the
26
#URLconf and it doesn't end in a slash, an HTTP redirect is issued to the same
27
#URL with a slash appended. Note that the redirect may cause any data submitted
28
#in a POST request to be lost. Due to the REST nature of most of the registered
29
#Synnefo endpoints we prefer to disable this behaviour by default.
30
APPEND_SLASH = False

Also available in: Unified diff