Commit 628107d94aa9acfdf6a7bbb8adf76cbe5f30feaa
Committed by
Sergio Oliveira
1 parent
e1ab7c23
Exists in
master
and in
13 other branches
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
colab/management/initconfig.py
... | ... | @@ -28,7 +28,8 @@ EMAIL_SUBJECT_PREFIX: '[colab]' |
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 | ... | ... |