Advertisement
Guest User

Untitled

a guest
Jun 26th, 2019
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.19 KB | None | 0 0
  1. #...
  2. Listen 8012
  3. #...
  4. #...
  5. DocumentRoot "D:/Z_web_prj/htdocs"
  6. <Directory "D:/Z_web_prj/htdocs">
  7. Options FollowSymLinks Includes ExecCGI
  8. AllowOverride All
  9. Require all granted
  10. </Directory>
  11. #...
  12.  
  13. 127.0.0.1 elliot.dev
  14. 127.0.0.1 localhost
  15.  
  16. <VirtualHost *:8012>
  17. ServerName elliot.dev
  18. DocumentRoot "D:/Z_web_prj/htdocs"
  19. </VirtualHost>
  20. <VirtualHost *:443>
  21. DocumentRoot "D:/Z_web_prj/htdocs"
  22. ServerName elliot.dev
  23. SSLEngine on
  24. SSLCertificateFile "C:/xampp/apache/conf/ssl.crt/server.crt"
  25. SSLCertificateKeyFile "C:/xampp/apache/conf/ssl.key/server.key"
  26. <Directory "D:/Z_web_prj/htdocs">
  27. AllowOverride All
  28. Order allow,deny
  29. Allow from all
  30. </Directory>
  31. </VirtualHost>
  32.  
  33. <VirtualHost *:8012>
  34. ServerName elliot.dev
  35. DocumentRoot "D:/Z_web_prj/htdocs"
  36. </VirtualHost>
  37. <VirtualHost *:443>
  38. DocumentRoot "D:/Z_web_prj/htdocs"
  39. ServerName elliot.dev
  40. SSLEngine on
  41. SSLCertificateFile "C:/xampp/apache/conf/ssl.crt/server.crt"
  42. SSLCertificateKeyFile "C:/xampp/apache/conf/ssl.key/server.key"
  43. </VirtualHost>
  44.  
  45. <VirtualHost *:8012>
  46. ServerName elliot.dev
  47. DocumentRoot "D:/Z_web_prj/htdocs"
  48. </VirtualHost>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement