ArcaniSGK507

vhost

Aug 11th, 2025
413
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.50 KB | None | 0 0
  1. <VirtualHost *:443>
  2.     ServerName lucasconde.ddns.net
  3.     DocumentRoot "C:/xampp/htdocs"
  4.  
  5.     SSLEngine on
  6.     SSLCertificateFile "C:/xampp/apache/certificados/fullchain.pem"
  7.     SSLCertificateKeyFile "C:/xampp/apache/certificados/privkey.pem"
  8.  
  9.     <Directory "C:/xampp/htdocs">
  10.         Options Indexes FollowSymLinks Includes ExecCGI
  11.         AllowOverride All
  12.         Require all granted
  13.     </Directory>
  14.  
  15.     ErrorLog "logs/ssl-error.log"
  16.     CustomLog "logs/ssl-access.log" combined
  17. </VirtualHost>
Advertisement
Add Comment
Please, Sign In to add comment