Advertisement
Guest User

Untitled

a guest
Aug 22nd, 2019
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.84 KB | None | 0 0
  1. <VirtualHost *:80>
  2. DocumentRoot "C:/xampp/htdocs/api/NewsJson"
  3. ServerName localhost
  4. <Directory "C:/xampp/htdocs/api/NewsJson">
  5. Options Indexes FollowSymLinks Includes ExecCGI
  6. AllowOverride All
  7. Order allow,deny
  8. Allow from all
  9. Require all granted
  10. </Directory>
  11. </VirtualHost>
  12.  
  13. <VirtualHost *:443>
  14. DocumentRoot "C:/xampp/htdocs/api/NewsJson"
  15. ServerName localhost
  16. SSLEngine on
  17. SSLCertificateFile "C:/xampp/apache/conf/ssl.crt/server.crt"
  18. SSLCertificateKeyFile "C:/xampp/apache/conf/ssl.key/server.key"
  19. <Directory "C:/xampp/htdocs/api/NewsJson">
  20. Options Indexes FollowSymLinks Includes ExecCGI
  21. AllowOverride All
  22. Order allow,deny
  23. Allow from all
  24. Require all granted
  25. </Directory>
  26. </VirtualHost>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement