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