16 lines
429 B
Plaintext
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>
|