24 lines
528 B
Plaintext
24 lines
528 B
Plaintext
|
Alias /icingaweb /vagrant/public
|
||
|
|
||
|
<Directory "/vagrant/public/">
|
||
|
Options FollowSymLinks
|
||
|
AllowOverride None
|
||
|
Order allow,deny
|
||
|
Allow from all
|
||
|
|
||
|
# SetEnv ICINGAWEB_CONFIGDIR /etc/icingaweb
|
||
|
|
||
|
EnableSendfile Off
|
||
|
|
||
|
RewriteEngine on
|
||
|
RewriteBase /icingaweb/
|
||
|
RewriteCond %{REQUEST_FILENAME} -s [OR]
|
||
|
RewriteCond %{REQUEST_FILENAME} -l [OR]
|
||
|
RewriteCond %{REQUEST_FILENAME} -d
|
||
|
RewriteRule ^.*$ - [NC,L]
|
||
|
RewriteRule ^.*$ index.php [NC,L]
|
||
|
|
||
|
php_value xdebug.idekey PHPSTORM
|
||
|
</Directory>
|
||
|
|