Skip to content

Commit

Permalink
Fixed apache listening on port 80 by default
Browse files Browse the repository at this point in the history
The condition was inverted. It should be enabled by default unless the class to
disable it is defined.

Ticket: ENT-10672
Changelog: Title
(cherry picked from commit 19f113c)
  • Loading branch information
nickanderson committed Sep 22, 2023
1 parent 8735dea commit 25aaf81
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cfe_internal/enterprise/templates/httpd.conf.mustache
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ ServerSignature Off
ServerTokens ProductOnly
ServerName {{{vars.sys.fqhost}}}
ServerRoot "{{{vars.sys.workdir}}}/httpd"
{{#classes.cfe_enterprise_disable_plain_http}}
{{^classes.cfe_enterprise_disable_plain_http}}
# ENT-10411
Listen 80
{{/classes.cfe_enterprise_disable_plain_http}}
Expand Down

0 comments on commit 25aaf81

Please sign in to comment.