mirror of
https://github.com/ansible/awx.git
synced 2024-11-02 09:51:09 +03:00
27 lines
568 B
Plaintext
27 lines
568 B
Plaintext
<VirtualHost _default_:80>
|
|
ServerName localhost
|
|
ServerAlias localhost
|
|
ServerAlias 127.0.0.1
|
|
DocumentRoot /var/lib/awx/public
|
|
|
|
RewriteEngine On
|
|
RewriteCond %{HTTPS} off
|
|
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}
|
|
|
|
Alias /favicon.ico /var/lib/awx/public/static/favicon.ico
|
|
Alias /static/ /var/lib/awx/public/static/
|
|
|
|
<Directory /var/lib/awx/>
|
|
<Files wsgi.py>
|
|
Order deny,allow
|
|
Allow from all
|
|
</Files>
|
|
</Directory>
|
|
|
|
<Directory /var/lib/awx/public/>
|
|
Order deny,allow
|
|
Allow from all
|
|
</Directory>
|
|
|
|
</VirtualHost>
|