Advertisement
Guest User

Untitled

a guest
Jun 16th, 2019
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.90 KB | None | 0 0
  1. Checking default ports...
  2. Executing "net start "Apache2.4""
  3. Return code: 0
  4.  
  5. Apache Service detected with wrong path Change XAMPP Apache and Control Panel settings or Uninstall/disable the other service manually first Found Path: "C:Apache24binhttpd.exe" -k runservice Expected Path: "c:xamppapachebinhttpd.exe" -k
  6.  
  7. ## mywebsite.local config
  8. <VirtualHost *:80>
  9. DocumentRoot "C:/xampp/htdocs/mywebsite.local"
  10. ServerName mywebsite.local
  11. ServerAlias *.mywebsite.local
  12. </VirtualHost>
  13. <VirtualHost *:443>
  14. DocumentRoot "C:/xampp/htdocs/mywebsite.local"
  15. ServerName mywebsite.local
  16. ServerAlias *.mywebsite.local
  17. ## these lines are for my local SSL, here is the issue
  18. SSLEngine on
  19. SSLCertificateFile "crt/mywebsite.local/server.crt" ## this path may not exist
  20. SSLCertificateKeyFile "crt/mywebsite.local/server.key" ## or even this line may not exist
  21. </VirtualHost>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement