From 1f4e3de21b026c5dbdfa2ce46ca95536bbeb12cd Mon Sep 17 00:00:00 2001 From: Uwe Steinmann Date: Tue, 23 Sep 2025 18:12:35 +0200 Subject: [PATCH] template for apache virtual host configuration --- conf/apache.virtualhost.template | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 conf/apache.virtualhost.template diff --git a/conf/apache.virtualhost.template b/conf/apache.virtualhost.template new file mode 100644 index 000000000..4c3b39c22 --- /dev/null +++ b/conf/apache.virtualhost.template @@ -0,0 +1,27 @@ + + ServerName _DOMAIN_ + ErrorLog /var/log/apache2/seeddms-error.log + CustomLog /var/log/apache2/seeddms-access.log combined + + DocumentRoot _INSTALL_PATH_/www + + SSLEngine on + SSLCertificateFile /etc/ssl/certs/ssl-cert-snakeoil.pem + SSLCertificateKeyFile /etc/ssl/private/ssl-cert-snakeoil.key +# SSLCertificateChainFile /just/if/needed/fullchain.cer + + + Options Indexes FollowSymLinks MultiViews + AllowOverride All + Require all granted + + + + # Apache 2.4.10+ can proxy to unix socket + SetHandler "proxy:unix:/var/run/php/php8.2-fpm.sock|fcgi://localhost" + + + # Consider to install the webdav_checkout extension + Alias /checkout _INSTALL_PATH_/www/ext/webdav_checkout/op/remote.php + +