summarylogtreecommitdiffstats
path: root/a2enmod.install
diff options
context:
space:
mode:
authorPiotr Rogoża2015-06-14 16:02:30 +0200
committerPiotr Rogoża2015-06-14 16:02:30 +0200
commitc2c525817ba54ab7ea296e2e5c714ec1f03173bd (patch)
treea454dde23f98786f5018a1d1d23b90bfdec07c9b /a2enmod.install
downloadaur-c2c525817ba54ab7ea296e2e5c714ec1f03173bd.tar.gz
Initial import
Diffstat (limited to 'a2enmod.install')
-rw-r--r--a2enmod.install45
1 files changed, 45 insertions, 0 deletions
diff --git a/a2enmod.install b/a2enmod.install
new file mode 100644
index 000000000000..15af2c96c110
--- /dev/null
+++ b/a2enmod.install
@@ -0,0 +1,45 @@
+enable_def_module(){
+ a2enmod -q log_config
+ a2enmod -q alias
+ a2enmod -q autoindex
+ a2enmod -q dir
+ a2enmod -q env
+ a2enmod -q mime
+ a2enmod -q negotiation
+ a2enmod -q setenvif
+ a2enmod -q status
+ a2enmod -q auth_basic
+ a2enmod -q deflate
+
+ # Those come from mod_auth:
+ a2enmod -q authz_default
+ a2enmod -q authz_user
+ a2enmod -q authz_groupfile
+ a2enmod -q authn_file
+
+ # This comes from mod_access:
+ a2enmod -q authz_host
+
+ # enable default site
+ a2ensite -q default
+}
+post_install() {
+ cat <<- HERE
+ Now you can modify the /etc/httpd/conf/httpd.conf.example and rename to /etc/httpd/conf/httpd.conf
+ To test the configuration use apachectl -t.
+ For more read: man 8 a2ensite a2enmod.
+HERE
+ enable_def_module
+}
+
+post_upgrade() {
+ echo ""
+# enable_def_module
+}
+
+op=$1
+shift
+
+$op $*
+
+# vi:set ts=2 sw=2 et: