Files
spot/config/apache-localhost.conf
Franzz 034d02f042
All checks were successful
Deploy Spot / deploy (push) Successful in 34s
Restructure project folders and remove obsolete files
2026-05-30 01:32:20 +02:00

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>