HTTP2 Apache2 Webseite: Unterschied zwischen den Versionen
Zur Navigation springen
Zur Suche springen
(→Reload) |
|||
| Zeile 38: | Zeile 38: | ||
=Reload= | =Reload= | ||
*systemctl reload apache2 | *systemctl reload apache2 | ||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
Version vom 15. August 2021, 17:21 Uhr
Diverse Module aktivieren
- a2enmod ssl
Cert und Key Dateien plazieren
- FQDN="www.xinux.de"
- ls /etc/apache2/*.{key,crt}
/etc/apache2/ca.crt /etc/apache2/www.xinux.de.crt /etc/apache2/www.xinux.de.key
Conf erstellen
- cd /etc/apache2/sites-available
- cat<<HERE>$FQDN.conf
<IfModule mod_ssl.c>
<VirtualHost _default_:443>
ServerName $FQDN
ServerAdmin webmaster@localhost
DocumentRoot /var/www/html/$FQDN
ErrorLog \${APACHE_LOG_DIR}/$FQDN-error.log
CustomLog \${APACHE_LOG_DIR}/$FQDN-access.log combined
SSLEngine on
SSLCertificateFile /etc/apache2/$FQDN.crt
SSLCertificateKeyFile /etc/apache2/$FQDN.key
SSLCACertificateFile /etc/apache2/ca.crt
<FilesMatch "\.(cgi|shtml|phtml|php)$">
SSLOptions +StdEnvVars
</FilesMatch>
<Directory /usr/lib/cgi-bin>
SSLOptions +StdEnvVars
</Directory>
</VirtualHost>
</IfModule>
HERE
Aktivieren
- a2ensite $FQDN
Reload
- systemctl reload apache2