Skip to content

Commit

Permalink
Revert unnecessary changes
Browse files Browse the repository at this point in the history
  • Loading branch information
quixoten committed Dec 18, 2015
1 parent 1bce7b2 commit c8114c2
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions manifests/vhost.pp
Expand Up @@ -896,7 +896,7 @@
if $wsgi_application_group or $wsgi_daemon_process or ($wsgi_import_script and $wsgi_import_script_options) or $wsgi_process_group or ($wsgi_script_aliases and ! empty($wsgi_script_aliases)) or $wsgi_pass_authorization {
concat::fragment { "${name}-wsgi":
target => "${priority_real}${filename}.conf",
order => 280,
order => 260,
content => template('apache/vhost/_wsgi.erb'),
}
}
Expand All @@ -906,7 +906,7 @@
if $custom_fragment {
concat::fragment { "${name}-custom_fragment":
target => "${priority_real}${filename}.conf",
order => 290,
order => 270,
content => template('apache/vhost/_custom_fragment.erb'),
}
}
Expand All @@ -919,7 +919,7 @@
if $fastcgi_server or $fastcgi_dir {
concat::fragment { "${name}-fastcgi":
target => "${priority_real}${filename}.conf",
order => 300,
order => 280,
content => template('apache/vhost/_fastcgi.erb'),
}
}
Expand All @@ -929,7 +929,7 @@
if $suexec_user_group {
concat::fragment { "${name}-suexec":
target => "${priority_real}${filename}.conf",
order => 310,
order => 290,
content => template('apache/vhost/_suexec.erb'),
}
}
Expand All @@ -944,7 +944,7 @@
if $passenger_app_root or $passenger_app_env or $passenger_ruby or $passenger_min_instances or $passenger_start_timeout or $passenger_pre_start {
concat::fragment { "${name}-passenger":
target => "${priority_real}${filename}.conf",
order => 320,
order => 300,
content => template('apache/vhost/_passenger.erb'),
}
}
Expand All @@ -954,7 +954,7 @@
if $add_default_charset {
concat::fragment { "${name}-charsets":
target => "${priority_real}${filename}.conf",
order => 330,
order => 310,
content => template('apache/vhost/_charsets.erb'),
}
}
Expand All @@ -967,7 +967,7 @@
if $modsec_disable_vhost or $modsec_disable_ids or $modsec_disable_ips {
concat::fragment { "${name}-security":
target => "${priority_real}${filename}.conf",
order => 340,
order => 320,
content => template('apache/vhost/_security.erb')
}
}
Expand All @@ -977,7 +977,7 @@
if $filters and ! empty($filters) {
concat::fragment { "${name}-filters":
target => "${priority_real}${filename}.conf",
order => 350,
order => 330,
content => template('apache/vhost/_filters.erb'),
}
}
Expand Down

0 comments on commit c8114c2

Please sign in to comment.