Advertisement
WEDC

Apache Vhost Demowebsite laravel

Jun 26th, 2023 (edited)
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.39 KB | None | 0 0
  1. <VirtualHost *:80>
  2. DocumentRoot "/opt/demowebsite/public"
  3.  
  4. ErrorLog /var/log/apache2/demowebsite-error_log
  5. CustomLog /var/log/apache2/demowebsite-access_log combined
  6.  
  7. HostnameLookups Off
  8. UseCanonicalName Off
  9. ServerSignature On
  10.  
  11.     <Directory "/opt/demowebsite/public">
  12.         Options -Indexes +FollowSymLinks +MultiViews
  13.         AllowOverride All
  14.         Require all granted
  15.     </Directory>
  16. </VirtualHost>
  17.  
  18.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement