Skip to content

Commit

Permalink
add minimal httpd config
Browse files Browse the repository at this point in the history
  • Loading branch information
drscream committed Aug 4, 2014
1 parent 188e655 commit 4247541
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions copy/opt/local/etc/httpd/httpd.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
##
## core - minimal apache configuration
##

# ServerRoot: The top of the directory tree under which the server's
# configuration, error, and log files are kept.
ServerRoot "/opt/local"

# Listen: Allows you to bind Apache to specific IP addresses and/or
# ports, instead of the default. See also the <VirtualHost>
# directive.
Listen 80
Listen 443

# Various default settings
Include conf.d/*.conf

# Virtual hosts
Include vhosts/*.conf

0 comments on commit 4247541

Please sign in to comment.