1
0
mirror of https://github.com/ansible/awx.git synced 2024-10-27 09:25:10 +03:00
awx/config/awx-httpd-443.conf
2014-08-22 10:12:12 -04:00

46 lines
1.1 KiB
Plaintext

NameVirtualHost *:443
WSGISocketPrefix /var/run/wsgi
# LoadModule ssl_module modules/mod_ssl.so
<VirtualHost _default_:443>
ServerName localhost
ServerAlias *
DocumentRoot /var/lib/awx/public
SSLEngine on
SSLCertificateFile /etc/tower/awx.cert
SSLCertificateKeyFile /etc/tower/awx.key
WSGIScriptAlias / /var/lib/awx/wsgi.py
WSGIPassAuthorization On
WSGIDaemonProcess awx user=awx group=awx processes=2 threads=20 maximum-requests=1000 display-name="%{GROUP}"
WSGIProcessGroup awx
Alias /favicon.ico /var/lib/awx/public/static/favicon.ico
Alias /static/ /var/lib/awx/public/static/
<Directory /var/lib/awx/>
<Files wsgi.py>
<IfVersion >= 2.3>
Require all granted
</IfVersion>
<IfVersion < 2.3>
Order deny,allow
Allow from all
</IfVersion>
</Files>
</Directory>
<Directory /var/lib/awx/public/>
<IfVersion >= 2.3>
Require all granted
</IfVersion>
<IfVersion < 2.3>
Order deny,allow
Allow from all
</IfVersion>
</Directory>
Include conf.d/awx-munin.conf
</VirtualHost>