zoukankan      html  css  js  c++  java
  • apache https访问配置

    1.httpd-ssh.conf

    Listen 443
    SSLStrictSNIVHostCheck off
    SSLCipherSuite AESGCM:ALL:!DH:!EXPORT:!RC4:+HIGH:!MEDIUM:!LOW:!aNULL:!eNULL
    SSLProtocol all -SSLv2 -SSLv3

    <VirtualHost *:443>
    ServerAdmin joey
    DocumentRoot "E:/www/API/public"
    ServerName localhost:443
    ErrorLog "logs/errlog"
    CustomLog "logs/accesslog" common

    SSLEngine on
    SSLCipherSuite RC4-SHA:AES128-SHA:HIGH:MEDIUM:!aNULL:!MD5
    SSLCertificateFile "E:/Web/phpStudy/PHPTutorial/Apache/conf/ssl/server.crt"
    SSLCertificateKeyFile "E:/Web/phpStudy/PHPTutorial/Apache/conf/ssl/server.key"

    <Directory "E:/www/API/public">
    Order allow,deny
    Allow from all
    </Directory>
    </VirtualHost>

    2..haccess

    <IfModule mod_rewrite.c>
    Options +FollowSymlinks -Multiviews
    RewriteEngine on
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteRule ^(.*)$ index.php [L,E=PATH_INFO:$1]

    RewriteBase /
    RewriteCond %{SERVER_PORT} !^443$
    RewriteRule ^.* https://%{SERVER_NAME}%{REQUEST_URI} [L,R]
    </IfModule>

    3.httpd.conf

    LoadModule ssl_module modules/mod_ssl.so

    Include conf/extra/httpd-ssl.conf

  • 相关阅读:
    2020寒假简记
    感知神经网络模型与学习算法
    信息检索模型与评估
    Diffie-Hellman密钥交换
    RSA密码体制
    MySQL基准测试(benchmark)
    MySQL数据引擎
    MySQL 多版本并发控制(MVCC)
    MySQL事务管理
    利用dotnet restore 导入本地 .nupkg 包
  • 原文地址:https://www.cnblogs.com/GarfieldTom/p/14118438.html
Copyright © 2011-2022 走看看