Commit 628107d94aa9acfdf6a7bbb8adf76cbe5f30feaa

Authored by Carlos Coêlho
Committed by Sergio Oliveira
1 parent e1ab7c23

Changed SITE_URL value

Removed trailing slash from url

Signed-off-by: Carlos Oliveira <carlospecter@gmail.com>
Signed-off-by: Alexandre Almeida <alexandreab@live.com>
Showing 2 changed files with 3 additions and 2 deletions   Show diff stats
colab.spec
... ... @@ -132,7 +132,7 @@ EMAIL_SUBJECT_PREFIX: &#39;[colab]&#39;
132 132  
133 133 SECRET_KEY: '$SECRET_KEY'
134 134  
135   -SITE_URL: 'http://localhost:8000/'
  135 +SITE_URL: 'http://localhost:8000'
136 136 BROWSERID_AUDIENCES:
137 137 - http://localhost:8000
138 138 # - http://example.com
... ...
colab/management/initconfig.py
... ... @@ -28,7 +28,8 @@ EMAIL_SUBJECT_PREFIX: &#39;[colab]&#39;
28 28  
29 29 SECRET_KEY: '{secret_key}'
30 30  
31   -SITE_URL: 'http://localhost:8000/'
  31 +# Must use it without trailing slash
  32 +SITE_URL: 'http://localhost:8000'
32 33 BROWSERID_AUDIENCES:
33 34 - http://localhost:8000
34 35 # - http://example.com
... ...