Move development files to devel directory
This commit is contained in:
parent
6647d0c964
commit
3e303ceda8
3 changed files with 0 additions and 0 deletions
20
devel/apache/default.conf
Normal file
20
devel/apache/default.conf
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
<VirtualHost *:80>
|
||||
ServerAdmin webmaster@localhost
|
||||
DocumentRoot /var/www/html
|
||||
|
||||
<Directory /var/www/html>
|
||||
Options -Indexes +FollowSymLinks
|
||||
AllowOverride All
|
||||
Require all granted
|
||||
DirectoryIndex disabled
|
||||
|
||||
# Route all requests through the router
|
||||
RewriteEngine On
|
||||
# Don't rewrite if it's already going to /app/
|
||||
RewriteCond %{REQUEST_URI} !^/app/
|
||||
RewriteRule ^(.*)$ /app/router.php [L,QSA]
|
||||
</Directory>
|
||||
|
||||
ErrorLog ${APACHE_LOG_DIR}/error.log
|
||||
CustomLog ${APACHE_LOG_DIR}/access.log combined
|
||||
</VirtualHost>
|
||||
Loading…
Add table
Add a link
Reference in a new issue