File drupal9.apache2.conf.default of Package drupal9
# Example configuration for a drupal9 repository
#
# As default server
# put the string DRUPAL8 in /etc/sysconfig/apache2 APACHE_SERVER_FLAGS
# to enable the URL
# http://localhost/drupal9
#
# As vhost
# If you want to use drupal9 in one vhost add
# Include /etc/apache2/vhosts.d/conf.d/drupal9.conf
# to the vhost in the vhost.conf file
# put the string DRUPAL8VHOST in /etc/sysconfig/apache2 APACHE_SERVER_FLAGS
# to enable the URL
# http://vhost/drupal9
<IfDefine DRUPAL9>
# apache can serve the static files directly
Alias /drupal9 "/srv/www/drupal9/"
<Directory /srv/www/drupal9/>
Options FollowSymlinks
AllowOverride All
Require all granted
</Directory>
</IfDefine>