Commit 90823544 authored by Ryan Bloom's avatar Ryan Bloom
Browse files

Add a Listen directive to the default config file. This allows us to

later add another listen directive, in the default SSL config file,
without stopping the server from listening on port 80.  The next step
is to combine the Port and ServerName directives, so that Port can go
away finally.


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@91260 13f79535-47bb-0310-9956-ffa450edef68
parent 43a5ad98
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -173,9 +173,10 @@ MaxRequestsPerChild 0
#
# Listen: Allows you to bind Apache to specific IP addresses and/or
# ports, in addition to the default. See also the <VirtualHost>
# directive.
# directive.  If this directive is present, then the Port directive
# above does not effect which port is bound.
#
#Listen 3000
Listen 80
#Listen 12.34.56.78:80

#