enabled syntax highlighting

This commit is contained in:
0xflotus 2020-05-14 18:54:06 +02:00 committed by GitHub
parent 78e51d5159
commit 5d82d89dc2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -5,9 +5,11 @@ AWX supports custom CORS headers via the Django CORS Middleware
To define CORS-specific settings, add them to ``/etc/tower/conf.d/cors.py``:
CORS_ORIGIN_WHITELIST = (
'hostname.example.com',
'127.0.0.1:9000'
)
```python
CORS_ORIGIN_WHITELIST = (
'hostname.example.com',
'127.0.0.1:9000'
)
```
...and restart all AWX services for changes to take effect.