diff options
author | Kiyoshi Aman <kiyoshi.aman+adelie@gmail.com> | 2018-02-04 21:15:27 +0000 |
---|---|---|
committer | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2018-04-27 16:09:07 -0500 |
commit | be6bc7b26c9ad0574ed6cfb17470224d2a5e8820 (patch) | |
tree | 8b06ae2be324fb4baf2961be4061a10d9153e1ee /user/apache-httpd/conf/host.conf | |
parent | bf44d023eda4469b01cfec21bebe664feea6285c (diff) | |
download | packages-be6bc7b26c9ad0574ed6cfb17470224d2a5e8820.tar.gz packages-be6bc7b26c9ad0574ed6cfb17470224d2a5e8820.tar.bz2 packages-be6bc7b26c9ad0574ed6cfb17470224d2a5e8820.tar.xz packages-be6bc7b26c9ad0574ed6cfb17470224d2a5e8820.zip |
user/apache-httpd: new package
Diffstat (limited to 'user/apache-httpd/conf/host.conf')
-rw-r--r-- | user/apache-httpd/conf/host.conf | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/user/apache-httpd/conf/host.conf b/user/apache-httpd/conf/host.conf new file mode 100644 index 000000000..1c5902a70 --- /dev/null +++ b/user/apache-httpd/conf/host.conf @@ -0,0 +1,38 @@ +# This is a sample configuration. Please read the documentation provided +# by the Apache HTTP server for information on how to modify this file. +# +# Note that these settings are normally defined in a <VirtualHost> block. +# This is omitted here in order to allow users to confirm that Apache works +# before they start poking around with site-specific configuration. + +# This is the directory in which Apache looks for files to serve. Generally, +# documents should be located in /srv, using either of the following example +# hierarchies: +# +# /srv/ +# `-> www/ -- the protocol; 'www' is used here for both HTTP and HTTPS. +# `-> localhost/ -- the domain name +# +# For systems serving many disparate groups, you may try the following: +# /srv/ +# `-> groupname/ -- for instance, 'physics' or 'chemistry' or 'history' +# `-> www/ +# `-> localhost/ +# +# We use /var/www here because /srv is intended for sysadmin (that is, you, +# the person reading this document) use. +DocumentRoot /var/www/localhost + +<Directory /var/www/localhost> +# Some configuration options that don't really go anywhere else. +# Here, we want empty directories to have an index generated for them +# ('Indexes') and for symlinks to be followed only if the owner of the +# directory matches the owner of the target. +Options Indexes SymLinksifOwnerMatch + +# Don't allow .htaccess files to override these settings. +AllowOverride None + +# Grants access if an authentication system is loaded (not the default). +Require all granted +</Directory> |