mirror of
https://github.com/ansible/awx.git
synced 2026-03-13 15:09:32 -02:30
Merge pull request #9 from jlaska/trusty_support
Add Ubuntu-14.04 Trusty support
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
NameVirtualHost *:443
|
||||
WSGISocketPrefix /var/run/wsgi
|
||||
LoadModule ssl_module modules/mod_ssl.so
|
||||
# LoadModule ssl_module modules/mod_ssl.so
|
||||
|
||||
<VirtualHost _default_:443>
|
||||
ServerName localhost
|
||||
@@ -21,14 +21,24 @@ LoadModule ssl_module modules/mod_ssl.so
|
||||
|
||||
<Directory /var/lib/awx/>
|
||||
<Files wsgi.py>
|
||||
Order deny,allow
|
||||
Allow from all
|
||||
<IfVersion >= 2.3>
|
||||
Require all granted
|
||||
</IfVersion>
|
||||
<IfVersion < 2.3>
|
||||
Order deny,allow
|
||||
Allow from all
|
||||
</IfVersion>
|
||||
</Files>
|
||||
</Directory>
|
||||
|
||||
<Directory /var/lib/awx/public/>
|
||||
Order deny,allow
|
||||
Allow from all
|
||||
<IfVersion >= 2.3>
|
||||
Require all granted
|
||||
</IfVersion>
|
||||
<IfVersion < 2.3>
|
||||
Order deny,allow
|
||||
Allow from all
|
||||
</IfVersion>
|
||||
</Directory>
|
||||
|
||||
</VirtualHost>
|
||||
@@ -24,14 +24,24 @@ WSGISocketPrefix /var/run/wsgi
|
||||
|
||||
<Directory /var/lib/awx/>
|
||||
<Files wsgi.py>
|
||||
Order deny,allow
|
||||
Allow from all
|
||||
<IfVersion >= 2.3>
|
||||
Require all granted
|
||||
</IfVersion>
|
||||
<IfVersion < 2.3>
|
||||
Order deny,allow
|
||||
Allow from all
|
||||
</IfVersion>
|
||||
</Files>
|
||||
</Directory>
|
||||
|
||||
<Directory /var/lib/awx/public/>
|
||||
Order deny,allow
|
||||
Allow from all
|
||||
<IfVersion >= 2.3>
|
||||
Require all granted
|
||||
</IfVersion>
|
||||
<IfVersion < 2.3>
|
||||
Order deny,allow
|
||||
Allow from all
|
||||
</IfVersion>
|
||||
</Directory>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user