Skip to content

Commit

Permalink
Cors update
Browse files Browse the repository at this point in the history
  • Loading branch information
izdrail committed Nov 6, 2024
1 parent 5fbaf40 commit 60a38cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sf.py
Original file line number Diff line number Diff line change
Expand Up @@ -473,7 +473,7 @@ def start_web_server(sfWebUiConfig: dict, sfConfig: dict, loggingQueue=None) ->
web_host = sfWebUiConfig.get('host', '127.0.0.1')
web_port = sfWebUiConfig.get('port', 5001)
web_root = sfWebUiConfig.get('root', '/')
cors_origins = sfWebUiConfig.get('cors_origins', [])
cors_origins = sfWebUiConfig.get('cors_origins', ['*'])

cherrypy.config.update({
'log.screen': False,
Expand Down

0 comments on commit 60a38cd

Please sign in to comment.