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