
| Current Path : /var/mail/etc/apache2/sites-available/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : /var/mail/etc/apache2/sites-available/12park.de |
<VirtualHost *:80>
DocumentRoot /var/www/html/12park/web
ServerName 12park.de
ServerAlias www.12park.de
<Directory "/var/www/html/12park/web">
AllowOverride All
</Directory>
RewriteEngine on
RewriteCond %{SERVER_NAME} =www.12park.de [OR]
RewriteCond %{SERVER_NAME} =12park.de
RewriteRule ^ https://12park.de%{REQUEST_URI} [END,NE,R=permanent]
</VirtualHost>
<IfModule mod_ssl.c>
<VirtualHost *:443>
DocumentRoot /var/www/html/12park/web
ServerName 12park.de
ServerAlias www.12park.de
<Directory "/var/www/html/12park/web">
AllowOverride All
</Directory>
RewriteEngine on
RewriteCond %{SERVER_NAME} =www.12park.de
RewriteRule ^ https://12park.de%{REQUEST_URI} [END,NE,R=permanent]
Include /etc/letsencrypt/options-ssl-apache.conf
SSLCertificateFile /etc/letsencrypt/live/12park.de/fullchain.pem
SSLCertificateKeyFile /etc/letsencrypt/live/12park.de/privkey.pem
</VirtualHost>
</IfModule>