hideichi_saito
Forum Replies Created
-
AuthorPosts
-
もやもやしてるけど自己解決しました。
一晩置いたら、適当に設置したファイルにもアクセスできるようになって、kusanagi ssl --email info@xxxxxxxx.com production_xxxxxxxx
これで、letsencryptが入りました。
追記
log/httpd/
の中身は空っぽでした。ファイルすら生成されていません。ちなみに、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>`Tanukiさん
返信有難うございます。
ビンゴでした。
以下のコマンドで動きました。mv /etc/httpd/conf.d/ssl.conf /etc/httpd/conf.d/ssl.conf.bk
ありがとうございました。
さらに試しに、
ssl.confの
Listen 443 https
をLoadModule ssl_module modules/mod_ssl.so Listen 443
に書き換えて再起動しましたが、状況は変わりませんでした。
firewall-cmd –zone=public –add-port=443/tcp
試しにこれをやってみましたが、状況は変わらず、起動しませんでした。
すいません。アプリケーション側でリダイレクトしている(と思われる)箇所を見つけました。
再チャレンジしてみます。 -
AuthorPosts