Reply To: virtual hostが反映されない
TOP › Forums › インストール(Installing KUSANAGI) › virtual hostが反映されない › Reply To: virtual hostが反映されない
ちなみに、production_xxxxxxxxx_http.confの中身です。
私の目には可笑しいところは見つけられませんでした、、、
` 1 #=======================================
2 # xxxxxxxxx.com
3 #—————————————
4
5 <VirtualHost *:80>
6 ServerAdmin webmaster@example.com
7 DocumentRoot /home/kusanagi/production_xxxxxxxxx/DocumentRoot
8 ServerName xxxxxxxxx.com
9 ErrorLog /home/kusanagi/production_xxxxxxxxx/log/httpd/error.log
10 CustomLog /home/kusanagi/production_xxxxxxxxx/log/httpd/access.log kusanagi env=!no_log
11 <IfModule mod_security2.c>
12 #IncludeOptional modsecurity.d/kusanagi_activated_rules/general/*.conf
13 #SecAuditLog /home/kusanagi/production_xxxxxxxxx/log/httpd/waf.log
14 </IfModule>
15 <Directory “/home/kusanagi/production_xxxxxxxxx/DocumentRoot”>
16 Require all granted
17 AllowOverride All
18 Options FollowSymlinks
19 </Directory>
20 <ifModule mod_rewrite.c>
21 RewriteEngine Off
22 RewriteCond %{HTTPS} off
23 RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [R,L]
24 </ifModule>
25 </VirtualHost>`