
| Current Path : /var/spool/mail/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 : /var/spool/mail/etc/apache2/sites-enabled/ift-pallets.eu |
<VirtualHost *:80>
DocumentRoot /var/www/html/pallets/web
ServerName ift-pallets.eu
ServerAlias www.ift-pallets.eu
<Directory "/var/www/html/pallets/web">
AllowOverride All
</Directory>
RewriteEngine on
RewriteCond %{SERVER_NAME} =www.ift-pallets.eu [OR]
RewriteCond %{SERVER_NAME} =ift-pallets.eu
RewriteRule ^ https://ift-pallets.eu%{REQUEST_URI} [END,NE,R=permanent]
</VirtualHost>
<IfModule mod_ssl.c>
<VirtualHost *:443>
DocumentRoot /var/www/html/pallets/web
ServerName ift-pallets.eu
ServerAlias www.ift-pallets.eu
<Directory "/var/www/html/pallets/web">
AllowOverride All
</Directory>
RewriteEngine on
# Some rewrite rules in this file were disabled on your HTTPS site,
# because they have the potential to create redirection loops.
# RewriteCond %{SERVER_NAME} =www.ift-pallets.eu [OR]
# RewriteCond %{SERVER_NAME} =ift-pallets.eu
# RewriteRule ^ https://ift-pallets.eu%{REQUEST_URI} [END,NE,R=permanent]
Include /etc/apache2/conf-available/php8.1-fpm.conf
Include /etc/letsencrypt/options-ssl-apache.conf
SSLCertificateFile /etc/letsencrypt/live/ift-pallets.eu/fullchain.pem
SSLCertificateKeyFile /etc/letsencrypt/live/ift-pallets.eu/privkey.pem
</VirtualHost>
</IfModule>