Skip to content
Snippets Groups Projects
Commit 142faea3 authored by David Trattnig's avatar David Trattnig
Browse files

Fixed whitelisting: missing protocol prefix.

parent 07f26064
No related branches found
No related tags found
No related merge requests found
...@@ -30,8 +30,8 @@ ALLOWED_HOSTS = ['127.0.0.1', 'localhost'] ...@@ -30,8 +30,8 @@ ALLOWED_HOSTS = ['127.0.0.1', 'localhost']
# Whitelist IPs that access the API # Whitelist IPs that access the API
CORS_ORIGIN_WHITELIST = ( CORS_ORIGIN_WHITELIST = (
'localhost', 'http://localhost',
'localhost:8080' 'http://localhost:8080'
) )
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment