Skip to content

Commit

Permalink
Katello Configure - Updates Pulp and Katello Apache configuration
Browse files Browse the repository at this point in the history
templates to include Fedora 18 configuration.
  • Loading branch information
ehelms committed Mar 23, 2013
1 parent 87e3e95 commit a78a564
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
Expand Up @@ -38,6 +38,9 @@ NameVirtualHost *:443
ExpiresActive On
<Directory "/usr/share/katello/public/">
ExpiresDefault "access plus 1 year"
<%- if scope.lookupvar('operatingsystem') == 'Fedora' && scope.lookupvar('operatingsystemrelease') == '18' -%>
Require all granted
<%- end -%>
</Directory>

ProxyPass /<%= scope.lookupvar("katello::params::deployment_url") %>/assets !
Expand Down
Expand Up @@ -37,3 +37,13 @@ WSGIImportScript /srv/pulp/webservices.wsgi process-group=pulp application-group
SSLOptions +StdEnvVars +ExportCertData
SSLVerifyClient optional
</Files>

<%- if scope.lookupvar('operatingsystem') == 'Fedora' && scope.lookupvar('operatingsystemrelease') == '18' -%>
<Directory /srv/pulp>
Require all granted
</Directory>

<VirtualHost *:80>
Include /etc/pulp/vhosts80/*.conf
</VirtualHost>
<%- end -%>

0 comments on commit a78a564

Please sign in to comment.