diff options
author | Dan Fandrich <danf@mageia.org> | 2024-04-19 10:39:25 -0700 |
---|---|---|
committer | Dan Fandrich <danf@mageia.org> | 2024-04-19 10:39:25 -0700 |
commit | 9f5663f5a7eaea824c844124e64a90ba1a977c38 (patch) | |
tree | 144e0a623fee38d1650f22df84090c860b08320e | |
parent | 53b8db189c8c9a84809f48b3f460a05d657bd025 (diff) | |
download | puppet-9f5663f5a7eaea824c844124e64a90ba1a977c38.tar puppet-9f5663f5a7eaea824c844124e64a90ba1a977c38.tar.gz puppet-9f5663f5a7eaea824c844124e64a90ba1a977c38.tar.bz2 puppet-9f5663f5a7eaea824c844124e64a90ba1a977c38.tar.xz puppet-9f5663f5a7eaea824c844124e64a90ba1a977c38.zip |
Enable https: on meetbot.mageia.org
-rw-r--r-- | deployment/websites/templates/vhost_meetbot.conf | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/deployment/websites/templates/vhost_meetbot.conf b/deployment/websites/templates/vhost_meetbot.conf index 6c393f7a..a6f812c5 100644 --- a/deployment/websites/templates/vhost_meetbot.conf +++ b/deployment/websites/templates/vhost_meetbot.conf @@ -15,3 +15,22 @@ </Directory> </VirtualHost> +<VirtualHost *:443> + ServerAdmin sysadm@mageia.org + ServerName meetbot.<%= domain %> + DocumentRoot <%= scope.lookupvar("websites::meetbot::vhostdir") %> + + CustomLog /var/log/httpd/access_meetbot_log combined + ErrorLog /var/log/httpd/error_meetbot_log + +<%= scope.function_template(["apache/vhost_ssl.conf"]) %> + + <Directory <%= scope.lookupvar("websites::meetbot::vhostdir") %>> + Allow from all + <IfModule mod_authz_core.c> + Require all granted + </IfModule> + Options +Indexes + IndexIgnore .htaccess *.bak *~ *.txt *.log.html + </Directory> +</VirtualHost> |