File: //etc/httpd/conf.d/lease-back.com_http.conf
#=======================================
# lease-back.com
#---------------------------------------
<VirtualHost *:80>
ServerAdmin webmaster@example.com
DocumentRoot /home/kusanagi/lease-back.com/DocumentRoot
ServerName lease-back.com
ErrorLog /home/kusanagi/lease-back.com/log/httpd/error.log
CustomLog /home/kusanagi/lease-back.com/log/httpd/access.log kusanagi env=!no_log
<IfModule mod_security2.c>
#IncludeOptional modsecurity.d/kusanagi_activated_rules/wordpress/*.conf
#SecAuditLog /home/kusanagi/lease-back.com/log/httpd/waf.log
</IfModule>
<Directory "/home/kusanagi/lease-back.com/DocumentRoot">
Require all granted
AllowOverride All
Options FollowSymlinks
</Directory>
<ifModule mod_rewrite.c>
RewriteEngine On
RewriteRule . - [E=REDIRECT_SSL:on]
RewriteCond %{ENV:REDIRECT_SSL} ^on$
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [R,L]
</ifModule>
</VirtualHost>