17 lines
463 B
Plaintext
17 lines
463 B
Plaintext
<VirtualHost *:80>
|
|
ServerName localhost
|
|
ServerAlias maui.local
|
|
DocumentRoot /var/www/html/
|
|
|
|
DirectoryIndex index.php
|
|
|
|
# Serve http://localhost/spot/ from the public web root.
|
|
Alias /spot /var/www/html/spot/public
|
|
|
|
<Directory /var/www/html/spot/public>
|
|
Options FollowSymLinks
|
|
AllowOverride None
|
|
Require all granted
|
|
</Directory>
|
|
</VirtualHost>
|