phpstudy 2016版 搭建https站點

2021-09-19 10:08:44 字數 1119 閱讀 1205

開啟在根目錄找到apache/conf/httpd.conf 檔案

找個這個把# 刪除

#loadmodule ssl_module modules/mod_ssl.so
然後開啟

apache/conf/vhosts.conf

加入這段

記得把裡面的中文刪除

listen 443

servername www.nihao.com 備註:你的網域名稱

serveralias nihao.com 備註:你的網域名稱

sslengine on

sslprotocol tlsv1 tlsv1.1 tlsv1.2

sslciphersuite high:medium:!anull:!md5

sslcertificatefile "d:\phpstudy\apache\conf\ssl\2_www.xinyunsw.com.crt" 備註:你的證書

#阿里雲的免費證書的 sslcertificatefile 的字尾是_public.crt這樣的

sslcertificatekeyfile "d:\phpstudy\apache\conf\ssl\3_www.xinyunsw.com.key" 備註:你的key

sslcertificatechainfile "d:\phpstudy\apache\conf\ssl\1_root_bundle.crt" 備註:你的證書

#阿里雲的免費證書的 sslcertificatechainfile 的字尾是_chain.crt這樣的

options +indexes +followsymlinks +execcgi

allowoverride all

order allow,deny

allow from all

require all granted

1、最後記得在這個檔案的其他其他位置不要出現 listen 443這行**

2、同時

documentroot "d:\phpstudy\www\nihao"

裡面的網域名稱配置目錄不要一模一樣,可以把nihao刪除掉

否則都會啟動不了

參考

phpStudy2016開啟xDebug調式

修改php.ini xdebug xdebug.profiler output dir c phpstudy tmp xdebug xdebug.trace output dir c phpstudy tmp xdebug zend extension c phpstudy php php 7.0....

PHP 環境搭建 phpStudy

剛學php,搭個環境,備忘一下。剛開始試了下分開安裝 php mysql apache 後來放棄了。選擇了整合開發環境phpstudy 第二步 配置phpstudy 1.執行模式 系統服務為開機自啟動 非服務模式 手動啟動 一般選非服務模式就行了。2.mysql 管理器 一般管理mysql,用視覺化...

快速搭建php執行環境之PHPStudy

看了群和論壇裡看到好多朋友問測試環境的搭建的問題,很雜很無奈,就寫了這篇。高手就不要看了。因為只是為了本地測試,不需要自己配置太多 難道還想在自己的電腦發布到外網不成 所以選用的是 龍的心 的phpstudy v1.7.5。不是最新的php的環境,但比較穩定,測試剛剛好,還簡單。偶的一貫作風是 夠用...