1
0
mirror of https://github.com/ansible/awx.git synced 2024-10-27 00:55:06 +03:00
awx/docs/cors.md

360 B

CORS Support

AWX supports custom CORS headers via the Django CORS Middleware (https://github.com/ottoyiu/django-cors-headers)

To define CORS-specific settings, add them to /etc/tower/conf.d/cors.py:

CORS_ALLOWED_ORIGINS = (
    'hostname.example.com',
    '127.0.0.1:9000'
)

...and restart all AWX services for changes to take effect.