summaryrefslogtreecommitdiffstats
path: root/config/awx-httpd-80.conf
blob: f1390fead3c1e9fd6d48ec3f973d3e8d4d8377e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
WSGISocketPrefix /var/run/wsgi
WSGIPythonHome /var/lib/awx/venv/tower

<VirtualHost _default_:80>

  RewriteEngine On
  # don't redirect HTTPs
  RewriteCond %{HTTPS} off
  # don't redirect /api traffic that requested explicit http://
  RewriteRule ^/api - [L]
  RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}

  ServerName localhost
  ServerAlias *
  DocumentRoot /var/lib/awx/public

  WSGIScriptAlias / /var/lib/awx/wsgi.py
  WSGIPassAuthorization On

  WSGIDaemonProcess awx_plain user=awx group=awx processes=2 threads=20 maximum-requests=1000 display-name="%{GROUP}"
  WSGIProcessGroup awx_plain

  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>


</VirtualHost>