mirror of
https://github.com/ansible/awx.git
synced 2026-01-09 23:12:08 -03:30
Add HTTPs and redirect http to HTTPs. Self signed.
This commit is contained in:
parent
a035dd85eb
commit
d90858fe58
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>
|
||||
@ -1,11 +1,15 @@
|
||||
NameVirtualHost *:80
|
||||
NameVirtualHost *:443
|
||||
WSGISocketPrefix /var/run/wsgi
|
||||
LoadModule ssl_module modules/mod_ssl.so
|
||||
|
||||
<VirtualHost _default_:80>
|
||||
<VirtualHost _default_:443>
|
||||
ServerName localhost
|
||||
ServerAlias localhost
|
||||
ServerAlias 127.0.0.1
|
||||
DocumentRoot /var/lib/awx/public
|
||||
SSLEngine on
|
||||
SSLCertificateFile /etc/awx/awx.cert
|
||||
SSLCertificateKeyFile /etc/awx/awx.key
|
||||
|
||||
WSGIScriptAlias / /var/lib/awx/wsgi.py
|
||||
WSGIPassAuthorization On
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user