Commit 628107d94aa9acfdf6a7bbb8adf76cbe5f30feaa
Committed by
Sergio Oliveira
1 parent
e1ab7c23
Exists in
master
and in
39 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
@@ -132,7 +132,7 @@ EMAIL_SUBJECT_PREFIX: '[colab]' | @@ -132,7 +132,7 @@ EMAIL_SUBJECT_PREFIX: '[colab]' | ||
132 | 132 | ||
133 | SECRET_KEY: '$SECRET_KEY' | 133 | SECRET_KEY: '$SECRET_KEY' |
134 | 134 | ||
135 | -SITE_URL: 'http://localhost:8000/' | 135 | +SITE_URL: 'http://localhost:8000' |
136 | BROWSERID_AUDIENCES: | 136 | BROWSERID_AUDIENCES: |
137 | - http://localhost:8000 | 137 | - http://localhost:8000 |
138 | # - http://example.com | 138 | # - http://example.com |
colab/management/initconfig.py
@@ -28,7 +28,8 @@ EMAIL_SUBJECT_PREFIX: '[colab]' | @@ -28,7 +28,8 @@ EMAIL_SUBJECT_PREFIX: '[colab]' | ||
28 | 28 | ||
29 | SECRET_KEY: '{secret_key}' | 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 | BROWSERID_AUDIENCES: | 33 | BROWSERID_AUDIENCES: |
33 | - http://localhost:8000 | 34 | - http://localhost:8000 |
34 | # - http://example.com | 35 | # - http://example.com |