Language/PHP

php SSL 적용 (http:// https://로 변경)

박호연지기 2024. 5. 6. 15:23
반응형

httpd-ssl.conf 파일에서 수정


<VirtualHost \_default\_:443>  

#   General setup for the virtual host  
DocumentRoot "프로젝트 폴더 경로"  
ServerName localhost:443  
#ServerAdmin admin@example.com  
#ErrorLog "C:/xampp8/apache/logs/error.log"  
#TransferLog "C:/xampp8/apache/logs/access.log"  

수정할 부분

DocumentRoot "프로젝트 폴더 경로"  
ServerName localhost:443

적용 후 아파치 재시작하기

반응형