I'm fairly sure these are all old and unused. ¯\_(ツ)_/¯

Signed-off-by: Ricky Elrod <relrod@redhat.com>
This commit is contained in:
Ricky Elrod 2018-05-17 03:14:07 +00:00
parent 5accb15036
commit b5d3987560
13 changed files with 0 additions and 85 deletions

View file

@ -1,2 +0,0 @@
RewriteEngine On
RewriteRule ^{{ path }}/((?:app|bapp|proxy|fas|koji|puppet|hosted|people|torrent|secondary|cvs)\d*)$ http://$1/apache-status [P,L]

View file

@ -1,3 +0,0 @@
Header set AppTime "%D"
PassEnv HOSTNAME
Header set AppServer "{{ fqdn }}"

View file

@ -1,3 +0,0 @@
Header set KojiTime "%D"
PassEnv HOSTNAME
Header set KojiServer "{{ fqdn }}"

View file

@ -1,2 +0,0 @@
CustomLog "logs/{{ name }}-access.log" combined
ErrorLog "logs/{{ name }}-error.log"

View file

@ -1,10 +0,0 @@
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{REQUEST_METHOD} GET
RewriteRule ^/mailman/subscribe/(.*) / [R]
</IfModule>
ProxyPass {{ iconpath }} {{ proxyurl }}/icons
ProxyPassReverse {{ iconpath }} {{ proxyurl }}/icons
ProxyPass {{ path }} {{ proxyurl }}/mailman
ProxyPassReverse {{ path }} {{ proxyurl }}/mailman

View file

@ -1 +0,0 @@
AddType {{ mimetype }} <% extensions.each do |ext| -}} {{ ext }} <% end -}}

View file

@ -1,3 +0,0 @@
Header set ProxyTime "%D"
PassEnv HOSTNAME
Header set ProxyServer "{{ fqdn }}"

View file

@ -1 +0,0 @@
Redirect {{ status }} {{ path }} {{ target }}

View file

@ -1 +0,0 @@
RedirectMatch {{ status }} {{ regex }} {{ target }}

View file

@ -1,2 +0,0 @@
RewriteEngine On
RewriteRule {{ path }} - [R={{ status }},L]

View file

@ -1,6 +0,0 @@
RewriteEngine On
{% if path == '/favicon.ico$' %}
RewriteRule {{ path }} {{ target }} [P]
{% else %}
RewriteRule {{ path }} {{ target }} [R={{ status }},L]
{% endif %}

View file

@ -1 +0,0 @@
Alias /robots.txt /srv/web/robots.txt.{{ name }}

View file

@ -1,50 +0,0 @@
<VirtualHost {{ ips.map{|ip| ip + ":80"}.join(" ") }}>
ServerName {{ name }}
{% if not server_aliases.empty? -%}
ServerAlias {{ server_aliases.join(" ") }}
<% end -%>
ServerAdmin {{ server_admin }}
TraceEnable Off
{% if gzip -%}
SetOutputFilter DEFLATE
<% end -%>
{% if sslonly -%}
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [NE]
<% else -%>
Include "conf.d/{{ name }}/*.conf"
<% end -%>
</VirtualHost>
{% if ssl -%}
<VirtualHost {{ ips.map{|ip| ip + ":443"}.join(" ") }}>
ServerName {{ name }}
{% if not server_aliases.empty? -%}
ServerAlias {{ server_aliases.join(" ") }}
<% end -%>
ServerAdmin {{ server_admin }}
{% if gzip -%}
SetOutputFilter DEFLATE
<% end -%>
SSLEngine on
SSLCertificateFile /etc/pki/tls/certs/{{ cert_name }}.cert
SSLCertificateKeyFile /etc/pki/tls/private/{{ cert_name }}.key
{% if not sSLCertificateChainFile.empty? -%}
SSLCertificateChainFile /etc/pki/tls/certs/{{ sSLCertificateChainFile }}
<% end -%>
SSLHonorCipherOrder On
# https://fedorahosted.org/fedora-infrastructure/ticket/4101#comment:14
# If you change the protocols or cipher suites, you should probably update
# modules/squid/files/squid.conf-el6 too, to keep it in sync.
SSLProtocol {{ ssl_protocols }}
SSLCipherSuite {{ ssl_ciphers }}
Include "conf.d/{{ name }}/*.conf"
</VirtualHost>
<% end -%>