Files
spot/config/apache-localhost.conf
2026-05-13 09:44:33 +02:00

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>