jassen/deploy/apache-jassen.local.conf
2026-07-25 18:51:57 +02:00

16 lines
429 B
Plaintext

#
# Lokal: http://jassen.local/
# DocumentRoot zeigt auf den Vite-Build (dist).
# Nach Änderungen: npm run build
#
<VirtualHost *:80>
ServerName jassen.local
DocumentRoot "c:/users/stefan/nextcloud/web/jassen/dist"
<Directory "c:/users/stefan/nextcloud/web/jassen/dist/">
Options +Indexes +Includes +FollowSymLinks +MultiViews
AllowOverride All
Require local
FallbackResource /index.html
</Directory>
</VirtualHost>