add config
authorMichael Wallner <mike@php.net>
Fri, 8 Mar 2019 15:57:27 +0000 (16:57 +0100)
committerMichael Wallner <mike@php.net>
Fri, 8 Mar 2019 15:57:27 +0000 (16:57 +0100)
etc/apache2.conf [new file with mode: 0644]

diff --git a/etc/apache2.conf b/etc/apache2.conf
new file mode 100644 (file)
index 0000000..5f9c3e2
--- /dev/null
@@ -0,0 +1,34 @@
+<Macro pharext_host_defs>
+       ServerName pharext.org
+       ServerAlias www.pharext.org
+       ServerAdmin webmaster@pharext.org
+
+       DocumentRoot /var/www/pharext/public
+
+       <Directory /var/www/pharext/public>
+               Options Indexes FollowSymLinks MultiViews
+               AllowOverride All
+               Require all granted
+               SetEnv APP_ENVIRONMENT production
+               <Files "*.phar">
+                       ForceType application/phar
+               </Files>
+       </Directory>
+</Macro>
+
+<VirtualHost *:80>
+       Use pharext_host_defs
+       Redirect permanent / https://pharext.org/
+</VirtualHost>
+
+<IfModule ssl_module>
+       <VirtualHost *:443>
+               Use pharext_host_defs
+               Include "bits/hsts"
+               SSLEngine on
+               SSLUseStapling on
+               SSLCertificateKeyFile /etc/letsencrypt/live/pharext.org/privkey.pem
+               SSLCertificateFile /etc/letsencrypt/live/pharext.org/fullchain.pem
+       </VirtualHost>
+</IfModule>
+# vim: syntax=apache ts=4 sw=4 sts=4 sr noet