ReadyNASのFrontviewのSSL

By siteadministrator, 23 2月, 2021

Netgear ReadyNASのFrontviewのSSLを自家製から商用に変更する。

Frontviewの設定ファイルの場所は、以下のコマンドで確認する。

cat /etc/apache2/sites-enabled/000-fv-http.conf

<VirtualHost *:80>
    Include "/etc/frontview/apache/defaults.conf"
    Include "/etc/frontview/apache/http-share-redirect.conf"
    Include "/etc/frontview/apache/fv-admin.conf"
    Include "/etc/frontview/apache/Shares.conf"
    Include "/etc/frontview/apache/apps-https.conf"
    Include "/etc/frontview/apache/READYDROP.conf"
    Include "/etc/frontview/apache/lan-try.conf"
</VirtualHost>

何故か表示されませんが、SSLの定義は、/etc/frontview/apache/ssl.confで設定されている。

vi /etc/frontview/apache/ssl.conf

SSLCertificateFile      サーバー証明書
SSLCertificateKeyFile   秘密鍵
SSLCertificateChainFile 中間証明書

Apacheを再起動する。

service apache2 restart

 

コメント