Advertisement
Guest User

lms

a guest
Jan 20th, 2020
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1.  
  2. C:\xampp\apache\conf\extra\httpd-vhosts
  3. ## LMS --------------------------------------------------------------
  4. <VirtualHost lms.test:80>
  5. DocumentRoot "C:/xampp/htdocs/LMS.dev/public"
  6. ServerName lms.test
  7. <Directory "C:/xampp/htdocs/LMS.dev/public">
  8. Order allow,deny
  9. Allow from all
  10. </Directory>
  11. </VirtualHost>
  12. <VirtualHost lms.test:443>
  13. DocumentRoot "C:\xampp\htdocs\LMS.dev/public"
  14. ServerName lms.test
  15. SSLEngine On
  16. SSLCertificateFile "C:/xampp/apache/conf/ssl.crt/server.crt"
  17. SSLCertificateKeyFile "C:/xampp/apache/conf/ssl.key/server.key"
  18. <Directory "C:\xampp\htdocs\LMS.dev/public">
  19. Order allow,deny
  20. Allow from all
  21. </Directory>
  22. </VirtualHost>
  23.  
  24.  
  25.  
  26. C:\Windows\System32\drivers\etc\hosts
  27. 127.0.0.1 hrms.test
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement