mirror of
https://github.com/ansible/awx.git
synced 2026-05-18 06:47:41 -02:30
Add HTTPs and redirect http to HTTPs. Self signed.
This commit is contained in:
26
config/awx-plain.conf
Normal file
26
config/awx-plain.conf
Normal file
@@ -0,0 +1,26 @@
|
||||
<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>
|
||||
Reference in New Issue
Block a user