mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-09-27 05:50:56 -04:00
22 lines
448 B
Plaintext
22 lines
448 B
Plaintext
# Moodle configuration file fragment for Apache
|
|
|
|
<IfModule mod_alias.c>
|
|
Alias /moodle/ "@MOODLEDIR@/"
|
|
</IfModule>
|
|
|
|
<Directory "@MOODLEDIR@">
|
|
Options Indexes
|
|
DirectoryIndex index.php index.html
|
|
AllowOverride None
|
|
Order allow,deny
|
|
Allow from all
|
|
</Directory>
|
|
|
|
<Directory "@MOODLEDATADIR@">
|
|
Options Indexes
|
|
DirectoryIndex index.php index.html
|
|
AllowOverride None
|
|
Order allow,deny
|
|
Allow from all
|
|
</Directory>
|