-
Notifications
You must be signed in to change notification settings - Fork 159
Apache configuration
Ycarus edited this page Dec 18, 2017
·
2 revisions
mod_rewrite MUST be enabled: a2enmod rewrite
on Debian/Ubuntu, rewrite APACHE2_MODULES flag on Gentoo.
example :
DocumentRoot "/var/www/flightairmap/htdocs"
<Directory /var/www/flightairmap/htdocs>
Options +Indexes +FollowSymLinks -MultiViews
AllowOverride All
Order allow,deny
Allow from all
</Directory>
example :
DocumentRoot "/var/www/flightairmap/htdocs"
<Directory /var/www/flightairmap/htdocs>
Options Indexes FollowSymLinks
AllowOverride All
Require all granted
</Directory>