
| Current Path : /etc/apache2/sites-enabled/ |
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 : //etc/apache2/sites-enabled/12park.at |
<VirtualHost *:80>
DocumentRoot /var/www/html/12park/web
ServerName 12park.at
ServerAlias www.12park.at
<Directory "/var/www/html/12park/web">
AllowOverride All
</Directory>
RewriteEngine on
RewriteCond %{SERVER_NAME} =www.12park.at [OR]
RewriteCond %{SERVER_NAME} =12park.at
RewriteRule ^ https://12park.at%{REQUEST_URI} [END,NE,R=permanent]
</VirtualHost>
<IfModule mod_ssl.c>
<VirtualHost *:443>
DocumentRoot /var/www/html/12park/web
ServerName 12park.at
ServerAlias www.12park.at
<Directory "/var/www/html/12park/web">
AllowOverride All
</Directory>
RewriteEngine on
RewriteCond %{SERVER_NAME} =www.12park.at
RewriteRule ^ https://12park.at%{REQUEST_URI} [END,NE,R=permanent]
Include /etc/letsencrypt/options-ssl-apache.conf
SSLCertificateFile /etc/letsencrypt/live/12park.at/fullchain.pem
SSLCertificateKeyFile /etc/letsencrypt/live/12park.at/privkey.pem
</VirtualHost>
</IfModule>