首页 > 其他分享 >apache配置ssl

apache配置ssl

时间:2023-08-25 09:13:34浏览次数:34  
标签:available conf SSL 配置 server ssl key apache

1、确认是否安装ssl模块 是否有mod_ssl.so文件   2、生成证书和密钥  

linux下 步骤1:生成密钥 命令:openssl genrsa 1024 > server.key 说明:这是用128位rsa算法生成密钥,得到server.key文件 步骤2: 生成证书请求文件 命令:openssl req -new -key server.key > server.csr 说明:这是用步骤1的密钥生成证书请求文件server.csr, 这一步提很多问题,一一输入 步骤3: 生成证书 命令:openssl req -x509 -days 365 -key server.key -in server.csr > server.crt 说明:这是用步骤1,2的的密钥和证书请求生成证书server.crt,-days参数指明证书有效期,单位为    
window下 步骤1:生成密钥 命令:openssl genrsa 1024 > server.key 说明:这是用128位rsa算法生成密钥,得到server.key文件   步骤2: 生成证书请求文件 命令:openssl req -config D:\work_soft\Apache2.2\conf\openssl.cnf -new -key server.key > server.csr 说明:这是用步骤1的密钥生成证书请求文件server.csr, 这一步提很多问题,一一输入   步骤3: 生成证书 命令:openssl req -config D:\work_soft\Apache2.2\conf\openssl.cnf -x509 -days 365 -key server.key -in server.csr > server.crt 说明:这是用步骤1,2的的密钥和证书请求生成证书server.crt,-days参数指明证书有效期,单位为天
      把得到的server.key和server.crt文件拷贝到apache的对应目录 3、配置apache   1、修改 /etc/apache2/sites-available/default-ssl文件     将其中的证书相关配置替换为        SSLCertificateFile /etc/apache2/ssl/server.crt         SSLCertificateKeyFile /etc/apache2/ssl/server.key    2、在/etc/apache2/sites-enable/目录下为刚才的default-ssl配置文件生成软连接(如果已经有就不要了)      $sudo ln -s ../sites-available/default-ssl 001-default-ssl   3、在/etc/apache2/mods-available下设置ssl.conf和ssl.load     ssl.conf     
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 <IfModule mod_ssl.c>         # Pseudo Random Number Generator (PRNG):         # Configure one or more sources to seed the PRNG of the SSL library.         # The seed data should be of good random quality.         # WARNING! On some platforms /dev/random blocks if not enough entropy         # is available. This means you then cannot use the /dev/random device         # because it would lead to very long connection times (as long as         # it requires to make more entropy available). But usually those         # platforms additionally provide a /dev/urandom device which doesn't         # block. So, if available, use this one instead. Read the mod_ssl User         # Manual for more details.         #         SSLRandomSeed startup builtin         SSLRandomSeed startup file:/dev/urandom 512         SSLRandomSeed connect builtin         SSLRandomSeed connect file:/dev/urandom 512           ##         ##  SSL Global Context         ##         ##  All SSL configuration in this context applies both to         ##  the main server and all SSL-enabled virtual hosts.         ##           #         #   Some MIME-types for downloading Certificates and CRLs         #         AddType application/x-x509-ca-cert .crt         AddType application/x-pkcs7-crl .crl           #   Pass Phrase Dialog:         #   Configure the pass phrase gathering process.         #   The filtering dialog program (`builtin' is a internal         #   terminal dialog) has to provide the pass phrase on stdout.         SSLPassPhraseDialog  exec:/usr/share/apache2/ask-for-passphrase           #   Inter-Process Session Cache:         #   Configure the SSL Session Cache: First the mechanism         #   to use and second the expiring timeout (in seconds).         #   (The mechanism dbm has known memory leaks and should not be used).         #SSLSessionCache                 dbm:${APACHE_RUN_DIR}/ssl_scache         SSLSessionCache         shmcb:${APACHE_RUN_DIR}/ssl_scache(512000)         SSLSessionCacheTimeout  300           #   Semaphore:         #   Configure the path to the mutual exclusion semaphore the         #   SSL engine uses internally for inter-process synchronization.         #   (Disabled by default, the global Mutex directive consolidates by default         #   this)         #Mutex file:${APACHE_LOCK_DIR}/ssl_mutex ssl-cache           #   SSL Cipher Suite:         #   List the ciphers that the client is permitted to negotiate. See the         #   ciphers(1) man page from the openssl package for list of all available         #   options.         #   Enable only secure ciphers:         SSLCipherSuite HIGH:!aNULL           # SSL server cipher order preference:         # Use server priorities for cipher algorithm choice.         # Clients may prefer lower grade encryption.  You should enable this         # option if you want to enforce stronger encryption, and can afford         # the CPU cost, and did not override SSLCipherSuite in a way that puts         # insecure ciphers first.         # Default: Off         #SSLHonorCipherOrder on           #   The protocols to enable.         #   Available values: all, SSLv3, TLSv1, TLSv1.1, TLSv1.2         #   SSL v2  is no longer supported           SSLProtocol all -SSLv3           #   Allow insecure renegotiation with clients which do not yet support the         #   secure renegotiation protocol. Default: Off         #SSLInsecureRenegotiation on             #   Whether to forbid non-SNI clients to access name based virtual hosts.         #   Default: Off           #SSLStrictSNIVHostCheck On </IfModule> # vim: syntax=apache ts=4 sw=4 sts=4 sr noet

  ssl.load

1 2 # Depends: setenvif mime socache_shmcb LoadModule ssl_module /usr/lib/apache2/modules/mod_ssl.so

  4、在/etc/apache2/mods-enabled下设置刚才配置文件的软连接

    ln -s ../mods-available/ssl.conf ssl.conf

    ln -s ../mods-available/ssl.load ssl.load 4、重启apache    apachectl configtest   apachectl restart 报错:   1SSLSessionCache: 'shmcb' session cache not supported (known names: ). Maybe you need to load the appropriate socache module (mod_socache_shmcb?)     解决方法:加载mod_sochache_shmcb     在/etc/apache2/mods-enabled下     ln -s ../mods-available/socache_shmcb.load socache_shmcb.load   2、"Syntax error on line 80 of c:/apache/conf/extra/httpd-ssl.conf:ErrorLog takes one argument,The filename of the error log"或者"Syntax error on line 99 of c:/apache/conf/extra/httpd-ssl.conf:SSLCertificateFile takes one argument,SSL Server Certificate file ('/path/to/file' -PEM or DER encoded)"     解决方法:文件路径加双引号

标签:available,conf,SSL,配置,server,ssl,key,apache
From: https://www.cnblogs.com/surplus/p/17655970.html

相关文章

  • Docker 安装Redis 无法使用配置文件设置密码问题
    背景最近开发需要使用各种组件,如果都到开发机上安装,会占用电脑资源较多。所以使用docker容器来安装这些组件。例如redis、mongodb、mysql、rabitmq、elasticsearch等等。遇到的问题用edis官方镜像启动容器后,发现没有加载配置文件。解决方案1.redis镜像拉下来......
  • Linux安装anaconda3并配置环境变量
    1、下载Anaconda32、上传到Linux服务器,本篇文章用的是Centos7.6链接工具推荐使用finalshell,Windows版下载地址:http://www.hostbuf.com/downloads/finalshell_install.exe#输入rz上传文件,会弹窗选择前面下载好的安装包rz#没有rz命令则先安装yum-yinstalllrszsbasha......
  • vscode 配置
    {"workbench.colorTheme":"VisualStudioDark","editor.fontSize":16,"workbench.startupEditor":"none","editor.formatOnType":true,"workbench.settings.openDefaultSett......
  • filebeat 配置采集nginx 日志
    filebeat配置nginx日志采集filebeat采集需求1.需要将以往30天的日志输出到es,并且以时间按天展示2.将不同的时间字段解析出来,输出到esnginx配置json日志log_formatlog_json'{"remoteAddr":"$clientRealIp",''"date_timeLocal":"$time_local",......
  • Apache Dubbo 和 Apache RocketMQ 邀您参与,ASF 亚洲峰会 5 张门票免费送
    今年,CommunityOverCodeAsia2023将是阿帕奇亚洲大会的首次线下会议,北京,8月18日至20日。会议将持续3天,设有17个论坛方向,共收集到150余个议题投稿,其中中文议题约110个,英文议题近40个。ApacheDubbo和ApacheRocketMQ邀请您来参会,点击阅读原文或扫描下方海报的二......
  • 本地启动可以读取到nacos配置,但是发布到服务器上时获取不到nacos配置
    【问题描述】微服务发布到服务器上时获取不到nacos配置,启动工程报错:Causedby:org.springframework.beans.factory.BeanCreationException:Errorcreatingbeanwithname'ssoConfig':Injectionofautowireddependenciesfailed;nestedexceptionisjava.lang.IllegalAr......
  • vim配置教程
    插件1.vim-plug插件管理junegunn/vim-plug:......
  • 只需半分钟,ARMS 帮你配置出“高质量”告警
    作者:图杨背景某位资深运维工程师A:“一天不收个几十条告警,我都觉得心里不踏实”。运维工程师B:“我那几个告警天天告,我的应用一点问题都没有,但是我又不敢关”。运维工程师C:“我每天都要花大量的时间,整理已经发生的告警:查它们是什么原因导致的,是故障还是误报,要不要解决,要不要屏蔽......
  • Electron,VUEJS3,Vite,TypesSript 开发环境配置
    Electron,VUEJS3,Vite,TypesSript开发环境配置项目早期是vue3+vite开发的,后期由于运营需求,要修改为Win安装包。方案还是比较多的:1.WPF-Webview由于目前只需要兼容win,所以可以选择WPF,但WPF需要WebView的,还需要本地架设服务。整体部署比较复杂以及需要熟悉C#与WPF相关开发。2.......
  • @Value注解读取yml中的map/list配置
    读取map1、配置文件写法common:map:'{"username":"lisi","password":"123456"}'2、java代码的写法@Value("#{${common.map}}")privateMap<String,Object>map;读取list1、配置文件写法common:list:1,2,32、ja......