linux下apache 怎么把 http改为https

linux下apache 怎么把 http改为https,第1张

Gworg证书解压后根据以下配置

Apache SSL配置

Listen 443 (如果配置已经存在就不要加)

LoadModule ssl_module modules/mod_ssl.so (如果配置已经存在就不要加)

NameVirtualHost *:443 (非必须,配置多个SSL站点会需要)

<VirtualHost *:443>

ServerName www.gworg.cn

ServerAlias gworg.cn

DocumentRoot /var/www/html

SSLEngine on

SSLProtocol all -SSLv2 -SSLv3

SSLCertificateFile /etc/ssl/server.crt

SSLCertificateKeyFile /etc/ssl/server.key

SSLCertificateChainFile /etc/ssl/server.ca-bundle

</VirtualHost>

1、前提是你要有keystore.jks且存有ssl证书

2、修改tomcat配置文件conf/server.xml,添加https配置即可

3、例如

<Connector port="443" maxHttpHeaderSize="8192"

protocol="HTTP/1.1" SSLEnabled="true"

maxThreads="5000" minSpareThreads="25" maxSpareThreads="75"

enableLookups="false" disableUploadTimeout="true"

acceptCount="100" scheme="https" secure="true"

URIEncoding="UTF-8"

keystoreFile="/opt/keystore/keystore.jks"

keypass="password2"

clientAuth="false" sslProtocol="TLS" />

linux大多有firefox浏览器,没有的话也可以装一个。

打开firefox的首选项,在高级-加密里有个查看证书。

注意要安装https证书必须先安装证书链。

以redhat5.4的firefox为例。


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/yw/6164749.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-03-17
下一篇 2023-03-17

发表评论

登录后才能评论

评论列表(0条)

保存